/** * Sets the resolved global options as environment variables. * * @param globalOptions An object containing the resolved global options, * with each option adhering to its definition in the globalOptionDefinitions. */ export declare function setGlobalOptionsAsEnvVariables>(globalOptions: T): void; /** * Converts a global option name to its corresponding environment variable name. * The conversion involves transforming the option name from camelCase to * SNAKE_CASE and prefixing it with "HARDHAT_". * * @param globalOptionName The name of the global option in camelCase. * * @returns The corresponding environment variable name in the format * "HARDHAT_". */ export declare function getEnvVariableNameFromGlobalOption(globalOptionName: string): string; //# sourceMappingURL=env.d.ts.map