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