import { EditorProps } from '@monaco-editor/react'; type EditorSurfaceProps = { selectedFile: string | null; editorValue: string; isDirty: boolean; isReadOnly: boolean; fileKind: "text" | "svg" | "raster"; isSvgPreviewMode: boolean; onToggleSvgPreview: () => void; onEditorChange: NonNullable; editorLanguage: string; editorTheme: string; monacoOptions: NonNullable; beforeMount: NonNullable; onEditorDrop?: (event: React.DragEvent) => void; onEditorDragOver?: (event: React.DragEvent) => void; }; export declare const EditorSurface: import('react').NamedExoticComponent; export {}; //# sourceMappingURL=editor-surface.d.ts.map