import { OpHubVitalsService } from './op-hub-vitals.service';
import { Vital } from './entities/op-hub-vital.entity';
export declare class OpHubVitalsController {
    private readonly vitalsService;
    constructor(vitalsService: OpHubVitalsService);
    create(createPrescriptionDto: Vital): Promise<any>;
    findAll(createPrescriptionDto: Vital): Promise<any>;
    createVitals(vitalData: Vital): Promise<{
        status: string;
        message: string;
        status_code: number;
    }>;
    getVitals(vitalData: Vital): Promise<{
        status: string;
        message: string;
        status_code: number;
        data?: undefined;
    } | {
        status: string;
        message: string;
        status_code: number;
        data: any;
    }>;
    updateVitals(vitalData: Vital): Promise<{
        status: string;
        message: string;
        status_code: number;
    }>;
    deleteVitalsHard(vitalData: Vital): Promise<{
        status: string;
        message: string;
        status_code: number;
    }>;
}
