/**
 * Imports a PCF solution into a specified Dataverse environment.
 *
 * @param {string} path - The path to the solution folder containing the build output.
 * @param {string} env - The environment identifier (GUID or URL) where the solution will be imported.
 * @param {boolean} verbose - If true, additional debug information is logged.
 * @param {number} [timeout] - Optional timeout in milliseconds for the import process.
 *
 * @returns {number} The exit status of the import process.
 */
declare function runImport(path: string, env: string, verbose?: boolean, timeout?: number): number;
export { runImport };
