import { AnyArenaNode } from './ArenaNode'; export declare type ToolCheckStatus = (node: AnyArenaNode, start?: number, end?: number) => boolean | undefined; export interface ToolOptions { name: string; icon: string; title: string; command: string; hint?: string; shortcut?: string; checkStatus?: ToolCheckStatus; cls?: string; }