import { CategoryDate, Partner, RequestInvoiceCategory, ScheduleCategory } from ".."; import { Local } from "./Local"; import { Product } from "./Product"; export declare class Category { id: number; local: Local; name: string; position: number; type_sales_hours: number | null; show_or_hide_item: number | null; created_by: Partner; created: Date; updated: Date | null; updated_by: Partner | null; current_values: any | null; status: number; status_review: number; review_comment: string | null; products: Product[]; category_schedules: ScheduleCategory[]; category_dates: CategoryDate[]; request_invoice_categories: RequestInvoiceCategory[]; }