import "./styles/index.scss"; import type { CMDPayload } from "@block-kit/core"; 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 EmojiPlugin extends EditorPlugin { protected editor: Editor; key: string; constructor(editor: Editor); destroy(): void; match(attrs: AttributeMap): boolean; onExec(payload: CMDPayload): undefined; renderLeaf(context: ReactLeafContext): ReactNode; }