import { type AgentServiceConfigInput } from "../../../agent/service/config.js"; /** Public API contract for durable run canary environment. */ export interface DurableRunCanaryEnvironment { apiUrl: string; authToken: string; projectId: string; model: string | undefined; requestTimeoutMs: number; keepSuccessfulEvidence: boolean; } /** Default value for durable run canary timeout ms. */ export declare const DEFAULT_DURABLE_RUN_CANARY_TIMEOUT_MS = 240000; /** Resolves durable run canary environment. */ export declare function resolveDurableRunCanaryEnvironment(env?: AgentServiceConfigInput): DurableRunCanaryEnvironment; //# sourceMappingURL=environment.d.ts.map