import { AxiosResponse } from 'axios'; import { PayrollListQuery, PutCancelSalaryAndThrBody, PutInternWagesBody, PutPaySalaryBody } from '../dto/payroll.dto'; import { Payroll } from '../types/payroll.type'; import { FetchListResponse } from '../types/fetchResponse.type'; declare const PayrollService: { getPayrollList: (params: PayrollListQuery) => Promise>>; putSetInternWages: (body: PutInternWagesBody) => Promise; putPaySalary: (id: string, body: PutPaySalaryBody) => Promise; putCancelSalary: (body: PutCancelSalaryAndThrBody) => Promise; putPayTHR: (id: string) => Promise; putCancelTHR: (body: PutCancelSalaryAndThrBody) => Promise; putPayCashback: (id: string) => Promise; putCancelcashback: (id: string) => Promise; }; export default PayrollService;