import type { FC } from "react"; import type { Editor } from "@tiptap/react"; import { type TextEditorTranslations } from "./textEditorTranslations"; export type TextEditorToolbarOption = "bold" | "italic" | "underline" | "strike" | "link" | "tag" | { list: "ordered"; } | { list: "bullet"; }; interface Props { toolbarId: string; toolbar: TextEditorToolbarOption[][]; hasTextSelected: boolean; editor: Editor | null; translations: TextEditorTranslations; } export declare const TextEditorToolbar: FC; export {};