type Child = (tab: string) => string;
export declare const printTree: (tab: string | undefined, children: (Child | null)[]) => string;
export {};