/**
 * Function to find the root directory of the project.
 * @param {string} startDir - The starting directory from which to begin the search.
 * @returns {string} - The absolute path to the project root.
 * @throws {Error} - If the project root is not found.
 */
declare const findProjectRoot: (startDir: string) => string;
export default findProjectRoot;
