/** * @param {{ tag: string, data: { meta?: { title?: string }, children?: any[], footnotes?: Array<{number:string,content:any[]}> } }} doc * @param {{ css?: string, template?: string }} [options] * @returns {string} */ export function render(doc: { tag: string; data: { meta?: { title?: string; }; children?: any[]; footnotes?: Array<{ number: string; content: any[]; }>; }; }, options?: { css?: string; template?: string; }): string;