/** * List regular files under `root`, returning paths RELATIVE to root with "/" * separators. Symlinked entries are skipped (no escape). Stops at `cap` files. */ export declare function walkFiles(root: string, cap: number): string[]; /** * Translate a glob (`**`, `*`, `?`) to an anchored RegExp over "/"-joined * relative paths. `*` and `?` do not cross "/"; `**` crosses any depth. */ export declare function globToRegExp(glob: string): RegExp; //# sourceMappingURL=walk.d.ts.map