import type { ISmartAiModelSetup, ISmartAiOptions, LanguageModelV3 } from './smartai.interfaces.js'; /** * Returns a LanguageModelV3 for the given provider and model. * This is the primary API — consumers use the returned model with AI SDK's * generateText(), streamText(), etc. */ export declare function getModel(options: ISmartAiOptions): LanguageModelV3; /** * Returns the model plus request-time providerOptions for AI SDK calls. */ export declare function getModelSetup(options: ISmartAiOptions): ISmartAiModelSetup;