import { OpenAiOptions, OpenAiChatResponse, OpenAiProvider, OpenAiTextPart, OpenAiImageUrlPart } from "./types.js"; export declare function textPart(text: string): OpenAiTextPart; export declare function imageUrlPart(url: string, detail?: "auto" | "low" | "high"): OpenAiImageUrlPart; export declare function imageBase64Part(base64: string, mediaType: string, detail?: "auto" | "low" | "high"): OpenAiImageUrlPart; export declare function firstContent(response: OpenAiChatResponse): string; export declare function createOpenAi(opts: OpenAiOptions): OpenAiProvider; //# sourceMappingURL=openai.d.ts.map