import type { REnvironmentInformation } from './environment';
/** Add a new local environment scope to the stack, returns the modified variant - sharing the original environments in the stack (no deep-clone) */
export declare function pushLocalEnvironment(base: REnvironmentInformation): REnvironmentInformation;
export declare function popLocalEnvironment(base: REnvironmentInformation): REnvironmentInformation;
