import type { PathBase, PathScurry } from 'path-scurry'; type ProjectFolderOptions = { /** * The standard path to read from, defaults to the user's home directory. */ path?: string; /** * A {@link PathScurry} object, for use in globs. */ scurry: PathScurry; /** * A list of user defined project paths set in the configuration file. */ userDefinedProjectPaths: string[]; }; /** * Retrieves folders from a given directory, if that directory is * recognized to be the current cli project root folder then we * proceed to read its siblings. * * Traverses nested directory recursively until project folders can * be find, always stopping at the first level where a package.json * is present. */ export declare const readProjectFolders: ({ path, scurry, userDefinedProjectPaths, }: ProjectFolderOptions, maxDepth?: number) => Promise; export {}; //# sourceMappingURL=read-project-folders.d.ts.map