import { LexicalEditor } from 'lexical'; export declare const insertBelow: (editor: LexicalEditor, selection: any, text: string) => void; export declare const copy: (text: string) => void; export declare const insert: (editor: LexicalEditor, range: Range, text: string) => void; export declare const replace: (editor: LexicalEditor, selection: any, text: string) => void; export declare const getParagraphText: (editor: LexicalEditor) => string | undefined;