import { type AgentServiceConfigInput } from "../../../agent/service/config.js"; /** Public API contract for live eval environment. */ export interface LiveEvalEnvironment { endpoint: string; authToken: string; apiUrl: string; projectId: string | undefined; branchId: string | undefined; model: string | undefined; } /** Default value for live eval endpoint. */ export declare const DEFAULT_LIVE_EVAL_ENDPOINT = "http://127.0.0.1:3001/api/ag-ui"; /** Resolves live eval environment. */ export declare function resolveLiveEvalEnvironment(env?: AgentServiceConfigInput): LiveEvalEnvironment; //# sourceMappingURL=environment.d.ts.map