export type Paths = Array; /** * List the entire contents of a directory, for Node.js versions 18.7.0 and up. 110-120ms. * @returns the subpaths of the directory, sorted alphabetically. * @experimental used internally, however external use is for your curiosity */ export declare function readdirRecursive(directory: string): Promise; /** * List the entire contents of a directory, for Node.js versions 10 and up. 70-80ms. * @returns the subpaths of the directory, sorted alphabetically. * @experimental used internally, however external use is for your curiosity */ export declare function readdirFileTypes(directory: string): Promise; /** * List the entire contents of a directory, selecting the appropriate technique for the Node.js version. * @returns the subpaths of the directory, sorted alphabetically. */ export default function list(directory: string): Promise; //# sourceMappingURL=index.d.ts.map