/** * Workplace Events Simulation * * Generates realistic workplace events including onboarding, offboarding, promotions, * performance reviews, training, team building, and conflict resolution scenarios. * * RESPONSIBLE USE: These simulations are for HR system testing and process optimization. * Handle sensitive event data with appropriate privacy and security measures. */ /** * Generate employee onboarding events * Models the new hire journey and integration process */ export declare function generateOnboardingEvents(): Promise>; /** * Generate employee offboarding events * Models departure process and exit analytics */ export declare function generateOffboardingEvents(): Promise>; /** * Generate promotion and transfer events * Models career advancement and internal mobility */ export declare function generatePromotionEvents(): Promise>; /** * Generate performance review events * Models the review cycle and feedback process */ export declare function generatePerformanceReviewEvents(): Promise>; /** * Generate training and development events * Models learning activities and skill-building programs */ export declare function generateTrainingEvents(): Promise>; /** * Generate team building activity events * Models team cohesion and morale activities */ export declare function generateTeamBuildingEvents(): Promise>; /** * Generate conflict resolution events * Models workplace conflicts and resolution processes */ export declare function generateConflictResolutionEvents(): Promise>; /** * Run all workplace event examples */ export declare function runAllWorkplaceEventExamples(): Promise; //# sourceMappingURL=workplace-events.d.ts.map