import { EditorView } from '@uiw/react-codemirror';
declare class InsertContent {
    private editorView;
    setEditorView(view: EditorView | null): void;
    insertContent(content: string, selection: {
        anchor: number;
        head: number;
    }): void;
    insertTextAtCursor(content: string): void;
    undo(): void;
    redo(): void;
}
declare const insertContent: InsertContent;
export { insertContent };
