export type TreeNode = { id: string; children?: TreeNode[]; }; /** * Create tree using depth first traversal. * https://waylonwalker.com/drawing-ascii-boxes/#connectors */ export declare const stringifyTree: (node: TreeNode, ancestors?: [TreeNode, number][], rows?: string[]) => string[]; //# sourceMappingURL=tree.d.ts.map