///
import { BaseSlashMenuItem, BlockNoteEditor, BlockSchema } from "bocknoat-core";
export declare class ReactSlashMenuItem extends BaseSlashMenuItem {
readonly name: string;
readonly execute: (editor: BlockNoteEditor) => void;
readonly aliases: string[];
readonly group: string;
readonly icon: JSX.Element;
readonly hint?: string | undefined;
readonly shortcut?: string | undefined;
constructor(name: string, execute: (editor: BlockNoteEditor) => void, aliases: string[], group: string, icon: JSX.Element, hint?: string | undefined, shortcut?: string | undefined);
}