export declare enum TargetType { FOLDER = "FOLDER", FILE = "FILE", LINK = "LINK" } export type CrawlDirOptions = { targetPath?: string; cwd?: string; dontCrawl?: string[]; depth?: number | undefined; }; export declare function crawlDir({ targetPath, dontCrawl, depth }?: CrawlDirOptions): Map;