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