interface EditorOverlayProps { isOpen: boolean; onClose: () => void; content: string; onChange: (content: string) => void; path: string; isDirty?: boolean; isSaving?: boolean; onSave?: () => void; } export declare function EditorOverlay({ isOpen, onClose, content, onChange, path, isDirty, isSaving, onSave, }: EditorOverlayProps): import("react").ReactPortal | null; export {}; //# sourceMappingURL=editor-overlay.d.ts.map