import * as $dara from '@darabonba/typescript'; export declare class ModelConnectionProviderSettings extends $dara.Model { /** * @remarks * The default API base URL for the model provider. * * @example * https://api.openai.com/v1 */ baseUrl?: string; /** * @remarks * The list of model names supported by this connection. */ modelNames?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }