import { OpHubPreviewDocService } from './op-hub-preview-doc.service';
export declare class OpHubPreviewDocController {
    private readonly previewDocService;
    constructor(previewDocService: OpHubPreviewDocService);
    findAll(opd_id: string, hospital_id: string): Promise<{
        status: string;
        messege: string;
        message?: undefined;
        details?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        details: {
            patient_details: any;
            doctor_details: any;
            clinical_notes: {
                [key: string]: any;
                OpdDetails: any;
            };
            prescription: any;
            vitals: any;
            is_document_uploaded: any;
        };
        messege?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        messege?: undefined;
        details?: undefined;
    }>;
}
