/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module ai/aiassistant/utils/normalizecommandsconfig */ import type { Locale } from '@ckeditor/ckeditor5-utils'; import type { AIGroupDefinition, AICommandDefinition } from '../aiassistant.js'; export declare const UNGROUPED_COMMANDS_GROUP_ID = "_ungrouppedCommands"; /** * Normalizes the `config.ai.assistant.commands` configuration taking into account different possible config formats (or lack thereof). */ export declare function normalizeCommandsConfig(config: Array, locale: Locale): Array;