import { OpdOutPatientService } from './opd-out_patient.service';
import { OpdOutPatient } from './entities/opd-out_patient.entity';
export declare class OpdOutPatientController {
    private readonly opdOutPatientService;
    constructor(opdOutPatientService: OpdOutPatientService);
    create(opd_entity: OpdOutPatient): Promise<{
        statusCode: import("@nestjs/common").HttpStatus;
        status: string;
        message: string;
    } | {
        status: string;
        message: string;
        statusCode?: undefined;
    } | {
        status: string;
        message: string;
        'inserted_details ': any;
    }[]>;
    findAll(): Promise<any>;
    findOne(search: string): Promise<any>;
    update(id: string, opd_entity: OpdOutPatient): Promise<{
        status: string;
        messege: string;
        updated_details: any;
    }[]>;
    remove(id: string, hos_id: number): Promise<{
        [key: string]: any;
    }[]>;
    findTitleByType(id: number): Promise<any>;
    findDescriptionbytitle(id: number): Promise<any>;
    findOpdDetailsBySearch(search: string): Promise<OpdOutPatient[]>;
    findAllopd(limit: number, page: number, search?: string): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./opd-out_patient.dto").opdOutPatientDto1[];
        total: number;
        limit: number;
        totalPages: number;
        page?: undefined;
    } | {
        status_code: string;
        status: string;
        message: string;
        data: any[];
        total: number;
        limit: number;
        page: number;
        totalPages: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
        limit?: undefined;
        totalPages?: undefined;
        page?: undefined;
    }>;
    V3findAllopd(limit: number, page: number, search?: string): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: any;
        total: any;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findOnebyid(id: string, hospital_id: number): Promise<any>;
}
