import { LocalChange, MasterNotification, MasterSession, PartnerNotification, VerifyLocal } from ".."; import { City } from "./City"; import { DiscountCodeCompany } from "./DiscountCodeCompany"; import { MasterRole } from "./MasterRole"; export declare class Master { id: number; code: string; document: string | null; name: string; surname: string; email: string; phone: string | null; city: City; address: string; password: string | null; google_id: string | null; profile: any | null; created: Date; updated: Date; status: number; visible: number; discounts_code_company_created_by: DiscountCodeCompany[]; discount_code_companies: DiscountCodeCompany[]; masters_roles: MasterRole[]; verifyLocals: VerifyLocal[]; master_notifications: MasterNotification[]; masters_to_notification: MasterNotification[]; masters_notification: PartnerNotification[]; masters_session: MasterSession[]; local_changes: LocalChange[]; }