import type { HardhatUserConfig } from "./types/config.js"; import type { GlobalOptions } from "./types/global-options.js"; import type { HardhatRuntimeEnvironment } from "./types/hre.js"; /** * Creates an instances of the Hardhat Runtime Environment. * * @param config - The user's Hardhat configuration. * @param userProvidedGlobalOptions - The global options provided by the * user. * @returns The Hardhat Runtime Environment. */ export declare function createHardhatRuntimeEnvironment(config: HardhatUserConfig, userProvidedGlobalOptions?: Partial): Promise; //# sourceMappingURL=hre.d.ts.map