import { type AgentEvent, type AgentReply, type AgentTurn, type RestoredMessage } from "@intentic/sandbox-contract"; export interface DaemonClient { readonly streamTurn: (turn: AgentTurn, signal: AbortSignal) => AsyncGenerator; readonly postReply: (reply: AgentReply) => Promise; readonly getSession: (id: string) => Promise; readonly listSessions: () => Promise; } export declare const createDaemonClient: (url: string, token: string) => DaemonClient; //# sourceMappingURL=daemon-client.d.ts.map