import type { StreamFunction, StreamOptions } from "../types"; export interface KiroCodeWhispererOptions extends StreamOptions { /** AWS region for the CodeWhisperer streaming endpoint. */ region?: string; /** Profile ARN for enterprise IAM Identity Center accounts. */ profileArn?: string; } export declare const streamKiroCodeWhisperer: StreamFunction<"kiro-codewhisperer-stream">;