/** * 序列化、反序列化规则 * @param options 预留的参数 */ export declare function createHtmlRule(options: any): { 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; };