/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import type { IAIAssistantProOptions, IAIProviderFactory } from "../interface/index"; /** * Get pre-configured AI Assistant options for a registered provider */ export declare function getAIProviderOptions(name: string, config: Record): Partial; /** * Register a custom AI provider factory */ export declare function registerAIProvider(name: string, factory: IAIProviderFactory): void;