declare namespace _exports { export { NodeDef }; } declare function _exports(ocadFile: any, options: any): HTMLElement; export = _exports; /** * // * */ type NodeDef = { /** * // * */ id?: string | undefined; /** * // * */ type: string; /** * // * */ attrs?: Record | undefined; children?: NodeDef[] | undefined; };