import { AbstractModel } from "./abstractModel"; import { Store } from "./store"; import { CalendarStatus } from "./enumeration"; export declare class Appointment extends AbstractModel { static readonly ENDPOINT = "appointments"; store?: Store; agent?: any; contact?: any; contactName?: string; agentName?: string; allDay?: boolean; color?: string; contactEmail?: string; contactPhone?: string; description?: string; startDate?: Date; endDate?: Date; icon?: string; location?: string; title?: string; type?: string; status?: CalendarStatus; }