export declare class SymptomsHeadDto {
    symptoms_title: string;
    description: string;
    type: string;
    Hospital_id: number;
    hospital_symptoms_id: number;
}
export declare class CountDto {
    details: SymptomsHeadDto[];
    total: number;
}
