export declare class SymptomsTypeDto {
    symptoms_type: string;
    Hospital_id: number;
    hospital_symptoms_id: number;
}
export declare class CountDto {
    details: SymptomsTypeDto[];
    total: number;
}
