import { Project, Recurring } from './project.model'; import { GeoPoint } from './shared/geo-point.model'; export declare enum ThirdPartyType { CLIENT = "CLIENT", PROVIDER = "PROVIDER", PROSPECT = "PROSPECT" } export declare enum ProviderState { INACTIVE = "INACTIVE", ACTIVE = "ACTIVE" } export interface Client { id: string; name: string; email: string; picUrl: string; addressStreet: string; addressPostalCode: string; addressLocation: string; addressNumber: string; addressCountryCode: string; addressLon: string; addressLat: string; geoPoint: GeoPoint; projects: Project[]; customerCode: string; thirdPartyType: ThirdPartyType; billable: boolean; recurring: boolean; recurringList: Recurring[]; peopleType: string; peopleFilter: any; }