export declare class KpiCompareDto {
    employeeIds: number[];
    month: string;
    page?: number;
    limit?: number;
    option?: string;
    period?: 'today' | 'this_week' | 'this_month' | 'custom';
    fromDate?: string;
    toDate?: string;
}
