import type { FC } from "react"; import type { Editor } from "@tiptap/react"; import { type TextEditorToolbarOption } from "./TextEditorToolbar"; import { type TextEditorTranslations } from "./textEditorTranslations"; interface Props { option: TextEditorToolbarOption; hasTextSelected: boolean; editor: Editor | null; translations: TextEditorTranslations; } export declare const TextEditorToolbarButton: FC; export {};