export declare class Walker { walker: any; pending: any[]; symlinkRoots: Set; constructor(directory: any); filter(fn: any): this; directory(fn: any): this; file(fn: any): this; end(): Promise; private capture; } export declare function findSymlinks(dirPath: any, maxDepth?: number): Promise>;