import { AnyArenaNode } from './ArenaNode'; export declare type CreatorCanShow = (node: AnyArenaNode) => boolean; export interface CreatorOptions { name: string; icon?: string; title: string; command: string; hint?: string; shortcut?: string; canShow: CreatorCanShow; }