//#region src/listProjects.d.ts export type ListProjectsOptions = { /** * Base directory to search from * @default process.cwd() */ baseDir?: string; /** * If true, search from the git root directory instead of baseDir * @default false */ gitRoot?: boolean; }; /** * Returns the git repository root directory, or `null` when the given * directory is not inside a git repository. */ export declare const getGitRootDir: (cwd?: string) => Promise; /** * List all Intlayer projects by searching for configuration files * * @param options - Options for listing projects * @returns Array of absolute paths to project directories containing Intlayer config */ export declare const listProjects: (options?: ListProjectsOptions) => Promise<{ searchDir: string; projectsPath: string[]; }>; //#endregion //# sourceMappingURL=listProjects.d.ts.map