import type { OutputRuntimeEnv, RuntimeEnv } from "openclaw/plugin-sdk/runtime"; type RuntimeEnvOptions = { throwOnExit?: boolean; }; export declare function createRuntimeEnv(options?: RuntimeEnvOptions): OutputRuntimeEnv; export declare function createTypedRuntimeEnv(options?: RuntimeEnvOptions, _runtimeShape?: (runtime: TRuntime) => void): TRuntime; export declare function createNonExitingRuntimeEnv(): OutputRuntimeEnv; export declare function createNonExitingTypedRuntimeEnv(runtimeShape?: (runtime: TRuntime) => void): TRuntime; export {};