import { Timestamp, Url } from "../builtins"; export interface ThreadQuery { threadId: string; } export interface ThreadResponse { threadId: string; userId: string | null; title: string; sourceThreadId: string | null; imageUrl: Url | null; created: Timestamp; modified: Timestamp; contentModified: Timestamp | null; lastOpened: Timestamp; lastAgentUpdate: Timestamp | null; origin: "client" | "agent"; kind: string | null; } //# sourceMappingURL=thread.d.ts.map