/// /** * 序列化、反序列化规则 * @param options 预留的参数 */ export declare function createHtmlRule(options: any): { deserialize(el: any, next: any): { object: string; type: string; nodes: any; data: { attrs: {}; style: {}; }; }; serialize(obj: any, children: any): JSX.Element; };