import { BlockElement, SelectionDetail, Editor, EditorDoc } from "../../interface"; export declare function isComplexBlockSelectedAll(complexBlock: BlockElement, range: Range): boolean; export declare function selectionToDoc(editor: Editor, detail: SelectionDetail, options?: { keepComments?: boolean; }): EditorDoc; export declare function getSelectedText(editor: Editor, options?: { visibleTextOnly?: boolean; }): string;