import { Selection } from '@vscode-alt/monaco-editor/esm/vs/editor/common/core/selection'; type EditorStatusComponentProps = { input: any; getEditorState: Function; }; interface IEditorSelectionStatus { selections?: Selection[]; charactersSelected?: number; } export declare const getSelectionLabel: (info: IEditorSelectionStatus) => string | undefined; export declare const EditorStatusComponent: (props: EditorStatusComponentProps) => any; export {};