import type { ProviderRef } from "../run/types.js"; export type StartSessionResponse = { session_id: string; started_at: string; }; export type UnlockSessionResponse = { ok: true; expires_in_sec: number; }; export type RegisterLlmKeyResponse = { ok: true; provider: ProviderRef; }; export type LockSessionResponse = { ok: true; archived_turns: number; }; export type SetPolicyResponse = { policy: { compiled: boolean; scope?: { mode?: string; chains?: number[]; actions?: string[]; }; llm_notes?: string; [key: string]: unknown; }; }; export type SessionLlmBody = { session_id: string; provider: ProviderRef; }; //# sourceMappingURL=types.d.ts.map