import { CreateStreamResponseOptions, CreateStreamTextResponseOptions } from './types'; /** * Create a streaming response for AI chat. */ export declare function createStreamResponse(options: CreateStreamResponseOptions): Promise; /** * Create a text streaming response for AI chat. * * This is a wrapper around ai-sdk's streamText that uses toTextStreamResponse * instead of toUIMessageStreamResponse. Useful for simpler sub-agent calls * that don't need the full UI message stream architecture. * * @see https://ai-sdk.dev/docs/reference/ai-sdk-core/stream-text */ export declare function createStreamTextResponse(options: CreateStreamTextResponseOptions): Promise;