import { HumanResourcePayrollService } from './human_resource_payroll.service';
import { HumanResourcePayroll } from './entities/human_resource_payroll.entity';
export declare class HumanResourcePayrollController {
    private readonly humanResourcePayrollService;
    constructor(humanResourcePayrollService: HumanResourcePayrollService);
    create(createHumanResourcePayroll: HumanResourcePayroll): Promise<{
        data: {
            status: string;
            messege: string;
            Added_Staff_Payslip_details: any;
        };
    }[]>;
    getStaffPayrollList(filters: any): Promise<any>;
    update(id: string, createHumanResourcePayroll: HumanResourcePayroll): Promise<{
        status: string;
        message: string;
        updated_values: any;
    }>;
    revertPayslip(id: number, hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    updatePaidrevertStatus(id: string, hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    proceedToPay(id: string, createHumanResourcePayroll: HumanResourcePayroll): Promise<{
        'data ': {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    findOne(id: string): Promise<HumanResourcePayroll>;
    StaffPayrollListByRoleMonthYear(search: string, limit: number, page: number, year: number, month: number, role: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: any[];
        total: any;
        query: {
            finalQuery: string;
            finalValues: any[];
            finalCountQuery: string;
            countParams: any[];
            year: number;
            month: number;
            currentYear: number;
            currentMonth: number;
        };
    } | {
        status_code: string;
        status: any;
        message: string;
        data?: undefined;
        total?: undefined;
        query?: undefined;
    }>;
    removePayslipAllowance(id: number, Hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
}
