import React from 'react';
interface WeekViewProps {
    displayDate: any;
    events: any[];
    schedulesByDay: Map<string, any[]>;
    layersById: Map<string, any>;
    system: string;
    hourHeight: number;
    onEventClick: (event: any) => void;
    onEventAdd: (date: any, time?: string) => void;
    onEventMove?: (eventId: string, newDayTimestamp: number, newStartTime?: string) => void;
    onDateClick: (date: any) => void;
    showTodayIndicator: boolean;
    showHolidayIndicators: boolean;
    showScheduleIndicators: boolean;
}
export declare const WeekView: React.FC<WeekViewProps>;
export {};
//# sourceMappingURL=WeekView.d.ts.map