export type LiveDeliveryClient = { session: { promptAsync(input: { path: { id: string; }; body: { parts: Array<{ type: "text"; text: string; }>; agent?: string; model?: { providerID: string; modelID: string; }; variant?: string; }; query?: { directory: string; }; }): Promise; status?: () => Promise; }; };