export declare class ItemStoreDto {
    id: number;
    item_store: string;
    code: string;
    description: string;
    created_at: Date;
    Hospital_id: number;
    hospital_item_store_id: number;
}
export declare class CountDto {
    details: ItemStoreDto[];
    total: number;
}
