/**
 * Recursively retrieves all sub-paths of a given directory up to a specified depth.
 */
export declare function subPaths(path: URL, maxDepth?: number): Promise<Array<{
    path: URL;
    relativePath: string;
}>>;
//# sourceMappingURL=sub-paths.d.ts.map