import { MastraModelGateway } from './base.js'; import type { AttachmentCapabilities, GatewayLanguageModel, ProviderConfig } from './base.js'; export declare class ModelsDevGateway extends MastraModelGateway { readonly id = "models.dev"; readonly name = "models.dev"; private providerConfigs; private attachmentCapabilities; constructor(providerConfigs?: Record); fetchProviders(): Promise>; /** * Return attachment capabilities collected during the last `fetchProviders()` call. * Maps provider ID → list of model IDs that support attachments. */ getAttachmentCapabilities(): AttachmentCapabilities; buildUrl(routerId: string, envVars?: typeof process.env): string | undefined; getApiKey(modelId: string): Promise; resolveLanguageModel({ modelId, providerId, apiKey, headers, }: { modelId: string; providerId: string; apiKey: string; headers?: Record; }): Promise; } //# sourceMappingURL=models-dev.d.ts.map