import { OpHubCheckOldPatientService } from './op-hub-check-old-patient.service';
import { CheckOldPatient } from './entities/op-hub-check-old-patient.entity';
export declare class OpHubCheckOldPatientController {
    private readonly checkOldPatientService;
    constructor(checkOldPatientService: OpHubCheckOldPatientService);
    findAll(Entity: CheckOldPatient): Promise<{
        status: string;
        message: string;
        details: any;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        details?: undefined;
    } | {
        status: string;
        message: string;
    }[]>;
    findAllV2(Entity: CheckOldPatient, limit: number, offset: number): Promise<{
        status: string;
        message: string;
        details: any;
        count: any;
        error?: undefined;
    } | {
        status: string;
        message: string;
        details: any[];
        count?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        details?: undefined;
        count?: undefined;
    } | {
        status: string;
        message: string;
    }[]>;
    findAllV3(Entity: CheckOldPatient, limit: number, offset: number): Promise<{
        status: string;
        message: string;
        details: any;
        count: any;
    } | {
        status: string;
        message: string;
    }[]>;
    hosfindAllV2(Entity: CheckOldPatient, limit: number, offset: number): Promise<{
        status: string;
        message: string;
        details: any;
        count: any;
        error?: undefined;
    } | {
        status: string;
        message: string;
        details: any[];
        count?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        details?: undefined;
        count?: undefined;
    } | {
        status: string;
        message: string;
    }[]>;
    hosfindAllV3(Entity: CheckOldPatient, limit: number, offset: number): Promise<{
        status: string;
        message: string;
        details: any;
        count: any;
    } | {
        status: string;
        message: string;
    }[]>;
}
