import React from 'react'; export interface ERPModalProps { open: boolean; type: "Projects" | "People" | "Estimates"; selected?: any; onClose?: () => void; onDelete?: () => void; projects?: { id?: string | null; name?: string | null; type?: string; }[]; onSubmit?: (plan: { project?: { id?: string; type?: string; }; startDate?: Date; endDate?: Date; notes?: string; items?: { location?: string; type?: string; estimate?: number; }[]; }) => void; } export declare const ERPModal: React.FC;