import type { StreamFunction, StreamOptions } from "../types"; /** Base host for Codeium/Windsurf's Cascade chat API (Connect protocol over HTTP/1.1). */ export declare const DEVIN_API_URL = "https://server.codeium.com"; export interface DevinOptions extends StreamOptions { /** Cascade conversation id; reused as `cascade_id` so the server threads turns. */ conversationId?: string; /** Falls back to `cascade_id` when no `conversationId` is supplied. */ sessionId?: string; /** Wire model uid selected after thinking-effort routing. */ chatModelUid?: string; } export declare const streamDevin: StreamFunction<"devin-agent">;