export declare class ItemCategoryDto {
    id: number;
    item_category: string;
    is_active: string;
    description: string;
    created_at: Date;
    Hospital_id: number;
    hospital_item_category_id: number;
}
export declare class CountDto {
    details: ItemCategoryDto[];
    total: number;
}
