import { Translatable } from './translatable'; export declare abstract class Branch extends Translatable { email: string; fax: string; id: number; mobile: string; name: string; phone: string; latitude: number; longtitude: number; isWhatsApp: boolean; translations?: { en_US: any; ar_EG: any; }; country?: { code?: string; name?: string; id?: string; }; city?: { code?: string; name?: string; id?: string; }; area?: { code?: string; name?: string; id?: string; }; } export declare abstract class ContactUs { branches: Branch[]; }