import type { REnvironmentInformation } from './environment';
/**
 * Produce a clone of the given environment information.
 * @param environment        - The environment information to clone.
 * @param builtInEnvironment - The built-in environment
 * @param recurseParents     - Whether to clone the parent environments as well.
 */
export declare function cloneEnvironmentInformation(environment: REnvironmentInformation, recurseParents?: boolean): REnvironmentInformation;
