import { renderBlock } from './render'; export default function ParagraphPlugin(options: any): { renderBlock: typeof renderBlock; htmlRule: { deserialize: (el: any, next: any) => { object: string; type: any; data: any; nodes: any; text?: undefined; } | { object: string; text: any; type?: undefined; data?: undefined; nodes?: undefined; }; serialize: (obj: any, children: any) => any; }; };