import React from 'react'; export interface ScheduleItem { id?: string; project?: { id: string; }; people?: { id: string; }[]; equipment?: string[]; notes?: string[]; owner?: { id: string; name: string; }; managers?: { id: string; name: string; }[]; } export interface ScheduleModalProps { open: boolean; onClose?: () => void; onSubmit?: (item: any) => void; onDelete?: () => void; onJoin?: () => void; onLeave?: () => void; selected?: any; date?: Date; projects?: any[]; people?: any[]; equipment?: any[]; } export declare const ScheduleModal: React.FC;