export interface AgentConfig { enabled: boolean; temporal: { address: string; namespace: string; taskQueue: string; }; webhook: { hmacSecret: string; timestampSkewSeconds: number; }; dedupe: { perSessionCapacity: number; }; payload: { limitBytes: number; trajectoryLogBytes: number; trajectoryLogTurns: number; }; sessionBusyRetryMs: number; conversationsDir: string; } export declare function readAgentConfig(env?: NodeJS.ProcessEnv): AgentConfig; //# sourceMappingURL=agent-config.d.ts.map