interface ThemeSettings { isReadOnly?: boolean; maxHeight?: string; minHeight?: string; rows?: number; } export declare const codeEditorTheme: ({ isReadOnly, minHeight, maxHeight, rows }: ThemeSettings) => import("@codemirror/state").Extension[]; export {};