/// import { onKeyDown } from './handlers'; import { renderBlock } from './render'; import { unwrapBlockquote } from './commands'; export default function BlockquotePlugin(options: any): { schema: { blocks: { [x: string]: { nodes: { match: { type: string; object: string; }; }[]; normalize(editor: any, error: any): void; }; }; }; commands: { [x: string]: typeof unwrapBlockquote; }; toolbar: { button: typeof import("./components/BlockquoteButton").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; }; };