import type { Editor } from "@block-kit/core"; import type { AttributeMap } from "@block-kit/delta"; import type { ReactLeafContext } from "@block-kit/react"; import { EditorPlugin } from "@block-kit/react"; import type { ReactNode } from "react"; export declare class FontColorPlugin extends EditorPlugin { key: string; destroy(): void; constructor(editor: Editor); match(attrs: AttributeMap): boolean; renderLeaf(context: ReactLeafContext): ReactNode; }