/**
 * Builds the Power Apps component framework project.
 *
 * @param {string} path The path to the project folder containing the pcfproj.json file.
 * @param {boolean} verbose - If true, additional debug information is logged.
 * @param {number} [timeout] - Optional timeout in milliseconds for the build process.
 *
 * @returns {number} The exit code of the spawned process.
 */
declare function runBuild(path: string, verbose: boolean, timeout?: number): number;
export { runBuild };
