import { Category, Gallery, LocalChange, LocalReserve, LocalReserveStatus, LocalTable, LocalTableReservePayment, LocalTableZone, MasterNotification, PartnerSession, PendingModification, Product, RequestInvoice, RequestLocal, RequestLocalHistory, RequestLocalPayment, RequestPrint, VerifyLocal } from ".."; import { City } from "./City"; import { Company } from "./Company"; import { DiscountCodeUser } from "./DiscountCodeUser"; import { Local } from "./Local"; import { PartnerNotification } from "./PartnerNotification"; import { PartnerRole } from "./PartnerRole"; export declare class Partner { id: number; company: Company | null; code: string; document: string | null; name: string; surname: string; email: string; phone: string | null; city: City; address: string | null; password: string | null; google_id: string | null; profile: any | null; owner: number; created: Date; updated: Date; status: number; visible: number; companies: Company[]; discounts_code_user_created_by: DiscountCodeUser[]; discount_code_partners: DiscountCodeUser[]; locals: Local[]; locals_partner: Local[]; partners_roles: PartnerRole[]; partners_notification: PartnerNotification[]; verifyLocals: VerifyLocal[]; partners_to_notification: PartnerNotification[]; partner_notifications: MasterNotification[]; partners_update_by: Product[]; partners_created_by: Product[]; partners_category_update_by: Category[]; partners_category_created_by: Category[]; partners_session: PartnerSession[]; updated_by_history: RequestLocalHistory[]; requests_local_payment: RequestLocalPayment[]; partner_prints: RequestPrint[]; partner_request_locals: RequestLocal[]; local_table_zones: LocalTableZone[]; local_tables: LocalTable[]; local_table_reserve_payments: LocalTableReservePayment[]; local_reserves: LocalReserve[]; local_reserve_status: LocalReserveStatus[]; request_invoices: RequestInvoice[]; galleries: Gallery[]; local_changes: LocalChange[]; created_by_locals: Local[]; created_by_pending_modifications: PendingModification[]; }