import { i as OpenClawConfig } from "./types.openclaw-fYj4Ft14.js"; //#region src/config/runtime-snapshot.d.ts type RuntimeConfigSnapshotRefreshOptions = { includeAuthStoreRefs?: boolean; }; type RuntimeConfigSnapshotRefreshParams = RuntimeConfigSnapshotRefreshOptions & { sourceConfig: OpenClawConfig; preflightResult?: unknown; }; type MaybePromise = T | Promise; type ConfigWriteAfterWrite = { mode: "auto"; } | { mode: "restart"; reason: string; } | { mode: "none"; reason: string; }; type ConfigWriteFollowUp = { mode: "auto"; requiresRestart: false; } | { mode: "none"; reason: string; requiresRestart: false; } | { mode: "restart"; reason: string; requiresRestart: true; }; declare function resolveConfigWriteAfterWrite(afterWrite?: ConfigWriteAfterWrite): ConfigWriteAfterWrite; declare function resolveConfigWriteFollowUp(afterWrite?: ConfigWriteAfterWrite): ConfigWriteFollowUp; type RuntimeConfigSnapshotRefreshHandler = { preflight?: (params: RuntimeConfigSnapshotRefreshParams) => MaybePromise; refresh: (params: RuntimeConfigSnapshotRefreshParams) => boolean | Promise; clearOnRefreshFailure?: () => void; }; type RuntimeConfigWriteNotification = { configPath: string; sourceConfig: OpenClawConfig; runtimeConfig: OpenClawConfig; persistedHash: string; revision: number; fingerprint: string; sourceFingerprint: string | null; writtenAtMs: number; afterWrite?: ConfigWriteAfterWrite; }; type RuntimeConfigSnapshotMetadata = { revision: number; fingerprint: string; sourceFingerprint: string | null; updatedAtMs: number; }; declare function hashRuntimeConfigValue(value: OpenClawConfig): string; declare function setRuntimeConfigSnapshot(config: OpenClawConfig, sourceConfig?: OpenClawConfig): void; declare function resetConfigRuntimeState(): void; declare function clearRuntimeConfigSnapshot(): void; declare function getRuntimeConfigSnapshot(): OpenClawConfig | null; declare function getRuntimeConfigSourceSnapshot(): OpenClawConfig | null; declare function getRuntimeConfigSnapshotMetadata(): RuntimeConfigSnapshotMetadata | null; declare function resolveRuntimeConfigCacheKey(config: OpenClawConfig): string; declare function selectApplicableRuntimeConfig(params: { inputConfig?: OpenClawConfig; runtimeConfig?: OpenClawConfig | null; runtimeSourceConfig?: OpenClawConfig | null; }): OpenClawConfig | undefined; declare function setRuntimeConfigSnapshotRefreshHandler(refreshHandler: RuntimeConfigSnapshotRefreshHandler | null): void; //#endregion export { setRuntimeConfigSnapshotRefreshHandler as _, RuntimeConfigWriteNotification as a, getRuntimeConfigSnapshotMetadata as c, resetConfigRuntimeState as d, resolveConfigWriteAfterWrite as f, setRuntimeConfigSnapshot as g, selectApplicableRuntimeConfig as h, RuntimeConfigSnapshotRefreshOptions as i, getRuntimeConfigSourceSnapshot as l, resolveRuntimeConfigCacheKey as m, ConfigWriteFollowUp as n, clearRuntimeConfigSnapshot as o, resolveConfigWriteFollowUp as p, RuntimeConfigSnapshotMetadata as r, getRuntimeConfigSnapshot as s, ConfigWriteAfterWrite as t, hashRuntimeConfigValue as u };