import type { Editor } from '@tiptap/core'; import type { WorkDocumentLayoutFont } from '../work-document-fonts'; export declare function DocumentSelectionToolbar({ editor, canInsertComment, layoutFonts, onInsertComment, reviewOnly, }: { editor: Editor; canInsertComment: boolean; layoutFonts?: readonly WorkDocumentLayoutFont[]; onInsertComment: () => void; reviewOnly?: boolean; }): import("react").JSX.Element;