git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
44 lines
1.8 KiB
TypeScript
44 lines
1.8 KiB
TypeScript
/**
|
|
* Workforce Planning Data Simulation
|
|
*
|
|
* Generates realistic hiring forecasts, skill gap analysis, turnover predictions,
|
|
* compensation data, career paths, and diversity metrics for strategic HR planning.
|
|
*
|
|
* PRIVACY & ETHICS: This data is synthetic for planning purposes only.
|
|
* Never use for actual hiring decisions or to bias against protected groups.
|
|
*/
|
|
/**
|
|
* Generate hiring needs forecasting data
|
|
* Models future workforce requirements based on growth and attrition
|
|
*/
|
|
export declare function generateHiringForecast(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Generate skill gap analysis data
|
|
* Identifies current vs required skills for strategic planning
|
|
*/
|
|
export declare function generateSkillGapAnalysis(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Generate turnover prediction data
|
|
* Models attrition risk and retention strategies
|
|
*/
|
|
export declare function generateTurnoverPredictions(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Generate compensation analysis data
|
|
* Models pay equity, market positioning, and adjustment needs
|
|
*/
|
|
export declare function generateCompensationAnalysis(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Generate career progression path data
|
|
* Models typical career ladders and advancement timelines
|
|
*/
|
|
export declare function generateCareerPaths(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Generate workforce diversity metrics
|
|
* Models representation, inclusion, and equity indicators
|
|
*/
|
|
export declare function generateDiversityMetrics(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Run all workforce planning examples
|
|
*/
|
|
export declare function runAllWorkforcePlanningExamples(): Promise<void>;
|
|
//# sourceMappingURL=workforce-planning.d.ts.map
|