export declare class PathologyCategoryDto {
    id: number;
    category_name: string;
    created_at: Date;
    Hospital_id: number;
    hospital_pathology_category_id: number;
}
export declare class CountDto {
    details: PathologyCategoryDto[];
    total: number;
}
