import { DiscountCodeUserProduct, Gallery, Partner, ProductDate, ProductImage, ProductSchedule } from ".."; import { Category } from "./Category"; import { ProductGroup } from "./ProductGroup"; import { ProductIngredient } from "./ProductIngredient"; import { RequestProduct } from "./RequestProduct"; import { User } from "./User"; export declare class Product { id: number; category: Category; name: string; details: string; price: string; age_restriction: number; combo: number; position: number; additional_information: any | null; type_sales_hours: 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; product_groups: ProductGroup[]; product_ingredients: ProductIngredient[]; request_products: RequestProduct[]; users_favorite_product: User[]; product_schedules: ProductSchedule[]; product_dates: ProductDate[]; products_image: ProductImage[]; product_images: Gallery[]; discount_code_user_products: DiscountCodeUserProduct[]; }