export interface WalkEntry { path: string; fullPath: string; isDirectory: boolean; depth: number; } export declare function walkDir(root: string, opts?: { skip?: string[]; maxDepth?: number; }): WalkEntry[]; //# sourceMappingURL=walk.d.ts.map