import { type RuntimeBootstrapState } from './bootstrap'; import type { RuntimePlatform } from './platform/types'; import type { XpodRuntimeOptions } from './runtime-types'; export interface RuntimeEnvironmentSession { env: Record; shorthand: Record; restore: () => void; } export declare function createRuntimeEnvironmentSession(state: RuntimeBootstrapState, options: XpodRuntimeOptions, platform?: RuntimePlatform): RuntimeEnvironmentSession;