/*! * 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 { IToolDefinition } from "../interface/index"; /** * Built-in tools collection * Each tool contains definition and executor */ export declare const BUILT_IN_TOOLS: Record; /** * Get tool names */ export declare function getToolNames(): string[]; /** * Get tool by name */ export declare function getTool(name: string): IToolDefinition | undefined; /** * Check if tool exists */ export declare function hasTool(name: string): boolean;