type FileNode = { name: string; type: "file" | "directory"; parentFolder: string; fileType?: string; children?: FileNode[]; }; export declare const generateFileTree: (basePath?: string) => Promise; export declare const printFileTreeString: (nodes: FileNode[]) => string; export declare const printFileTree: (nodes: FileNode[], returnType: "string" | "object") => any; export {}; //# sourceMappingURL=crawl.d.ts.map