export declare class ProcessPayrollDto {
    month: number;
    year: number;
    department_id?: number;
}
export declare class EmployeeSalarySlipsDto {
    page?: number;
    limit?: number;
    search?: string;
    month?: number;
    year?: number;
}
