import { DiscountCodeUser, Gallery, LocalChange, LocalDecorationReserve, LocalPaymentMethod, LocalPlan, LocalReserveStatus, LocalTable, LocalTableZone, PosSystem, ReceiptConfig, RequestInvoice, RequestLocal } from ".."; import { BusinessTypeProduct } from "./BusinessTypeProduct"; import { Category } from "./Category"; import { City } from "./City"; import { Company } from "./Company"; import { LocalQualification } from "./LocalQualification"; import { Partner } from "./Partner"; import { PaymentMethod } from "./PaymentMethod"; import { Square } from "./Square"; import { User } from "./User"; export declare class Local { id: number; code: string; company: Company; name: string; city: City; address: string; latitude: number; longitude: number; details: any | null; created: Date; created_by: Partner; updated: Date | null; updated_by: Partner | null; square: Square; pos_system: PosSystem; pos_system_settings: any | null; status: number; visible: number; operation_status: number; contact_details: any | null; locals_partners: Partner[]; requests_local: RequestLocal[]; categories: Category[]; payment_methods: PaymentMethod[]; qualifications: LocalQualification[]; users_favorite_local: User[]; business_type_products: BusinessTypeProduct[]; discount_code_locals: DiscountCodeUser[]; locals_plan: LocalPlan[]; receipts_local_config: ReceiptConfig[]; local_table_zones: LocalTableZone[]; local_tables: LocalTable[]; local_decorations_reserve: LocalDecorationReserve[]; local_reserve_status: LocalReserveStatus[]; request_invoices: RequestInvoice[]; galleries: Gallery[]; locals_payment_method: LocalPaymentMethod[]; locals_changes: LocalChange[]; }