import { SetupHumanResourcePayslipCategoryService } from './setup-human_resource-payslip_category.service';
import { SetupHumanResourcePayslipCategory } from './entities/setup-human_resource-payslip_category.entity';
export declare class SetupHumanResourcePayslipCategoryController {
    private readonly setupHumanResourcePayslipCategoryService;
    constructor(setupHumanResourcePayslipCategoryService: SetupHumanResourcePayslipCategoryService);
    create(payslip_categoryEntity: SetupHumanResourcePayslipCategory): Promise<{
        data: {
            id: any;
            status: string;
            message: string;
            inserted_data: any;
        };
    }[]>;
    findAll(): Promise<any>;
    findOne(id: string): Promise<any>;
    update(id: string, payslip_categoryEntity: SetupHumanResourcePayslipCategory): Promise<{
        data: {
            status: string;
            message: string;
            updated_values: any;
        };
    }[]>;
    remove(id: string, hospital_id: number): Promise<{
        data: {
            status: string;
            message: string;
        };
    }[]>;
}
