/** * @returns the project root directory. * * @deprecated Should not be used outside of context functions. */ export declare function findProjectRootAsync({ cwd, defaultToProcessCwd, }?: { cwd?: string; defaultToProcessCwd?: boolean; }): Promise; /** * Determine the project root directory and ensure some constraints about the project setup * like CLI version and dependencies. * @returns the project root directory * * @deprecated Should not be used outside of context functions. */ export declare function findProjectDirAndVerifyProjectSetupAsync({ cwd, }?: { cwd?: string; }): Promise;