export declare class LeaveTypeBifurcationDto {
    leave_type_code: string;
    leave_type_name: string;
    total_days: number;
}
export declare class EmployeeWiseLeaveDto {
    employee_id: number;
    employee_name: string;
    total_days: number;
    leave_types: LeaveTypeBifurcationDto[];
}
export declare class MonthlyLeaveCountDto {
    month: number;
    month_name: string;
    total_days: number;
    leave_types: LeaveTypeBifurcationDto[];
}
export declare class LeaveAnalyticsResponseDto {
    employee_wise_leaves: EmployeeWiseLeaveDto[];
    monthly_leave_count: MonthlyLeaveCountDto[];
    year: number;
    total_leave_days: number;
}
