/*! * 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 { IJodit } from "jodit/esm/types/index"; import type { PermissionManager } from "../helpers/permission-manager"; import type { StateManager } from "../helpers/state-manager"; import type { IAIAssistantStorage, IToolCall, ToolPermissionScope } from "../interface/index"; /** * Handle tool call approval */ export declare function handleToolApproval(toolCallId: string, scope: ToolPermissionScope, stateManager: StateManager, permissionManager: PermissionManager, storage: IAIAssistantStorage): Promise; /** * Handle tool call denial */ export declare function handleToolDenial(jodit: IJodit, toolCallId: string, stateManager: StateManager, storage: IAIAssistantStorage): Promise; /** * Handle conversation selection */ export declare function handleConversationSelect(conversationId: string, storage: IAIAssistantStorage, stateManager: StateManager): Promise; /** * Handle back to conversation list */ export declare function handleBackToList(storage: IAIAssistantStorage, stateManager: StateManager): Promise; /** * Handle conversation search */ export declare function handleConversationSearch(query: string, storage: IAIAssistantStorage, stateManager: StateManager): Promise;