/** * Employee Behavior Patterns Simulation * * Generates realistic daily work schedules, productivity patterns, collaboration, * and communication behaviors for workforce modeling. * * PRIVACY NOTE: All data is synthetic. No real employee data is used or should * be used to train these models without explicit consent and proper anonymization. */ /** * Generate daily work schedule patterns * Simulates diverse work hours including flexible schedules, remote work, etc. */ export declare function generateWorkSchedules(): Promise>; /** * Generate productivity patterns throughout the day * Models realistic variations in focus and output */ export declare function generateProductivityPatterns(): Promise>; /** * Generate collaboration and communication patterns * Models team interactions, meeting participation, and communication frequency */ export declare function generateCollaborationPatterns(): Promise>; /** * Generate meeting attendance and participation data * Models realistic meeting behaviors and engagement */ export declare function generateMeetingBehavior(): Promise>; /** * Generate task completion rates and patterns * Models realistic work output and completion behaviors */ export declare function generateTaskCompletion(): Promise>; /** * Generate work-from-home vs office patterns * Models hybrid work preferences and patterns */ export declare function generateWorkLocationPatterns(): Promise>; /** * Run all workforce behavior examples */ export declare function runAllBehaviorExamples(): Promise; //# sourceMappingURL=workforce-behavior.d.ts.map