import { SetupHumanResourceLeaveTypesService } from './setup-human_resource-leave_types.service';
import { SetupHumanResourceLeaveType } from './entities/setup-human_resource-leave_type.entity';
export declare class SetupHumanResourceLeaveTypesController {
    private readonly setupHumanResourceLeaveTypesService;
    constructor(setupHumanResourceLeaveTypesService: SetupHumanResourceLeaveTypesService);
    create(leavetypesEntity: SetupHumanResourceLeaveType): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupHumanResourceLeaveType[]>;
    findOne(id: string): Promise<SetupHumanResourceLeaveType>;
    update(id: string, leavetypesEntity: SetupHumanResourceLeaveType): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: number, Hospital_id: any): Promise<{
        [key: string]: any;
    }[]>;
    HRLeaveTypes(search: string): Promise<SetupHumanResourceLeaveType[]>;
    findAllLeaveTypes(limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-human_resource-leave_types.dto").LeaveTypesDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findLeaveTypesearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-human_resource-leave_types.dto").LeaveTypesDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
