import { SetupPatientDisabledPatientListService } from './setup-patient-disabled_patient_list.service';
export declare class SetupPatientDisabledPatientListController {
    private readonly setupPatientDisabledPatientListService;
    constructor(setupPatientDisabledPatientListService: SetupPatientDisabledPatientListService);
    findAll(): Promise<import("./entities/setup-patient-disabled_patient_list.entity").SetupPatientDisabledPatientList[]>;
    update(id: number, data: any): Promise<any>;
    findDisablePatientSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-patient-disabled_patient_list.dto").DisabledPatientListDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findDisablePatientsSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-patient-disabled_patient_list.dto").DisabledPatientListDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
