/// import { onKeyDown } from './handlers'; import { renderBlock } from './render'; import { insertHr } from './commands'; export default function HrPlugin(options: any): { schema: { blocks: { [x: string]: { isVoid: boolean; }; }; }; commands: { [x: string]: typeof insertHr; }; toolbar: { button: typeof import("./components/HrButton").default; }; onKeyDown: typeof onKeyDown; renderBlock: typeof renderBlock; htmlRule: { deserialize(el: any, next: any): { object: string; type: string; nodes: any; }; serialize(obj: any, children: any): JSX.Element; }; };