import { Editor, SelectedBlock } from "../interface"; export declare function removeCommentsFromEditor(editor: Editor, groupId: string): void; export declare function getDocCommentBlock(editor: Editor, groupId: string): SelectedBlock[]; export declare function getDocCommentInfo(editor: Editor, groupId: string): { blocks: SelectedBlock[]; text: string; };