import { ValidationOptions } from "class-validator"; import { PatientType, DoctorType } from "../encounter/encounter.dto"; import { CaseType } from "../common/enums"; export declare function IsPublicFileUrl(validationOptions?: ValidationOptions): (object: Object, propertyName: string) => void; export declare class ProcessDSDto { encryptedData?: string; files?: string[]; publicKey?: string; encounterId?: string; date?: string; callbackUrl?: string; callbackAuthToken?: string; } export declare class FhirBundleDto { recordId?: string; extractedData?: Record; encryptedData?: string; publicKey?: string; caseType: CaseType; documentReferences?: string[]; enableExtraction: boolean; patientDetails?: PatientType | undefined; doctorDetails?: DoctorType[] | undefined; callbackUrl?: string; } export declare class CarePlanDto { encryptedData?: string; files?: string[]; publicKey?: string; callbackUrl?: string; callbackAuthToken?: string; }