import { AIResult, CallAIOptions, Message, SchemaStrategy } from "./types.js"; import { PACKAGE_VERSION } from "./version.js"; declare const FALLBACK_MODEL = "openrouter/auto"; declare function callAINonStreaming(prompt: string | Message[], options?: CallAIOptions, isRetry?: boolean): Promise; declare function extractContent(result: AIResult, schemaStrategy: SchemaStrategy): string; declare function extractClaudeResponse(response: Response): Promise>; export { callAINonStreaming, extractContent, extractClaudeResponse, PACKAGE_VERSION, FALLBACK_MODEL };