/// import { setHeading } from './commands'; export default function HeadingPlugin(options?: { [key: string]: any; }): { commands: { [x: string]: typeof setHeading; }; toolbar: { button: (props: any) => JSX.Element; }; onKeyDown: (event: any, editor: any, next: any) => any; renderBlock: (props: any, editor: any, next: any) => any; htmlRule: { deserialize(el: any, next: any): { object: string; type: any; nodes: any; }; serialize(obj: any, children: any): JSX.Element; }; };