import { PhrHospitalsService } from './phr-hospitals.service';
export declare class PhrHospitalsController {
    private readonly phrHospitalsService;
    constructor(phrHospitalsService: PhrHospitalsService);
    getHospitalAppointmentHistoryById(patient_id: number, hospitalId: number): Promise<any>;
    getHospitalAppointmentHistoryByIdList(patient_id: number, hospitalId: number, limit?: string, page?: string): Promise<{
        status_code: number;
        status: string;
        message: string;
        details?: undefined;
        total?: undefined;
    } | {
        status_code: number;
        status: string;
        message: string;
        details: any;
        total: any;
    } | {
        status_code: number;
        status: string;
        message: string;
    }[]>;
}
