import { Editor } from '@tiptap/react'; import { RichTextToolbarControl } from './RichTextEditor'; export interface RichTextToolbarProps { editor: Editor | null; /** Ordered controls to render. `"divider"` renders a vertical separator. */ toolbar: RichTextToolbarControl[]; /** aria-label / tooltip overrides per control; falls back to the `rich_text_editor.*` i18n bundle. */ labels?: Partial>; disabled?: boolean; } export declare function RichTextToolbar({ editor, toolbar, labels, disabled }: RichTextToolbarProps): import("react").JSX.Element | null; //# sourceMappingURL=RichTextToolbar.d.ts.map