declare type Node = { bold?: boolean; code?: boolean; italic?: boolean; type?: string; url?: string; children?: Node[]; }; export declare const serialize: (children?: Node[] | undefined, submissionData?: any) => string | undefined; export {};