import { AiSdkFactory as AiSdkFactoryAbstraction } from "./abstractions.js"; import type { IAiSdk, IAiSdkModel } from "./abstractions.js"; declare class AnthropicSdkFactoryImpl implements AiSdkFactoryAbstraction.Interface { readonly id = "anthropic"; readonly name = "Anthropic"; readonly models: IAiSdkModel[]; execute(apiKey?: string): Promise; } export declare const AnthropicSdkFactory: import("@webiny/di").Implementation; export {};