export declare class KpiMonthDto {
    employeeIds: number[];
    month: string;
    page?: number;
    limit?: number;
    option?: string;
    sortBy?: 'revenue' | 'target';
    sortOrder?: 'ASC' | 'DESC';
}
