import { EventEmitter } from '../../stencil-public-runtime'; import { ToolConfig } from '../pos-type-router/selectToolsForTypes'; import './shoelace'; /** * Allows selecting a tool from within a set of available tools */ export declare class PosToolSelect { /** * The tool that is currently selected */ selected: ToolConfig; /** * All tools that are available */ tools: ToolConfig[]; toolSelected: EventEmitter; render(): any; }