import { azure } from '@ai-sdk/azure';
import { LooseToStrict, ModelInfo, RawiCredentials, StreamingResponse } from '../shared/types.cjs';

type LooseAzureModelId = Parameters<typeof azure>[0];
type AzureModelId = LooseToStrict<LooseAzureModelId>;
declare const azureModels: ModelInfo[];
declare const azureProvider: {
    name: "azure";
    displayName: string;
    models: ModelInfo[];
};
declare const streamWithAzure: (credentials: RawiCredentials, prompt: string) => Promise<StreamingResponse>;

export { type AzureModelId, azureModels, azureProvider, streamWithAzure };
