import { azure } from '@ai-sdk/azure'; import { LooseToStrict, ModelInfo, RawiCredentials, StreamingResponse } from '../shared/types.js'; import { ChatProvider, ExecGenerationOptions, ExecGenerationResult } from './types.js'; import 'ai'; type LooseAzureModelId = Parameters[0]; type AzureModelId = LooseToStrict; declare const azureModels: ModelInfo[]; declare const azureProvider: { name: "azure"; displayName: string; models: ModelInfo[]; }; declare const streamWithAzure: (credentials: RawiCredentials, prompt: string) => Promise; declare const azureChatProvider: ChatProvider; declare const generateWithAzure: (options: ExecGenerationOptions) => Promise; export { type AzureModelId, azureChatProvider, azureModels, azureProvider, generateWithAzure, streamWithAzure };