import type { PathBase, PathScurry } from 'path-scurry'; type ProjectFolderOptions = { path?: string; scurry: PathScurry; 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 {};