import { DBAPICalendarEvent, CalendarEventsSearchParams } from './calendar-event.types'; import Pagination from './helpers/pagination'; import Model, { ModelError } from './model'; export * from './calendar-event.types'; export default class CalendarEvent extends Model { static pagination: Pagination | null; static findAll(params?: CalendarEventsSearchParams): Promise<{ results: CalendarEvent[]; pagination: Pagination | null; errors: ModelError[] | null; }>; static findById(id: number): Promise<{ result: CalendarEvent | null; errors: ModelError[] | null; }>; get id(): number | null; get title(): string | null; get notes(): string | null; get propertyId(): number | null; get date(): string | null; get startTime(): string | null; get endTime(): string | null; get colorType(): string | null; get startDateTime(): Date | null; get endDateTime(): Date | null; } //# sourceMappingURL=calendar-event.d.ts.map