import type { Effort } from "../model-thinking"; import type { StreamFunction, StreamOptions } from "../types"; export interface KiroCodeWhispererOptions extends StreamOptions { /** Effort level for Kiro API-key reasoning. */ reasoning?: Effort | boolean; /** 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">;