import React from 'react'; import { MaybeNull } from '@opensumi/ide-core-browser'; import { IResource } from '../common'; import { EditorGrid } from './grid/grid.service'; import { IEditorComponent } from './types'; import { EditorGroup } from './workbench-editor.service'; export declare const EditorView: () => React.JSX.Element | null; export declare const EditorGridView: ({ grid }: { grid: EditorGrid; }) => React.JSX.Element; export declare const EditorGroupView: ({ group }: { group: EditorGroup; }) => React.JSX.Element; export declare const EditorGroupBody: ({ group }: { group: EditorGroup; }) => React.JSX.Element; export declare const ComponentsWrapper: ({ component, resources, current, ...other }: { component: IEditorComponent; resources: IResource[]; current: MaybeNull; }) => React.JSX.Element; export declare const ComponentWrapper: ({ component, resource, hidden, ...other }: { [x: string]: any; component: any; resource: any; hidden: any; }) => React.JSX.Element; //# sourceMappingURL=editor.view.d.ts.map