import { ToolProxy } from "./tool_proxy"; import type { Tool, ToolView } from "./tool"; import type * as p from "../../core/properties"; export declare namespace ToolGroup { type Attrs = p.AttrsOf>; type Props = ToolProxy.Props & { show_count: p.Property; }; } export interface ToolGroup extends ToolGroup.Attrs { } export declare class ToolGroup extends ToolProxy { properties: ToolGroup.Props; __view_type__: ToolView; constructor(attrs?: Partial>); get tooltip(): string; } //# sourceMappingURL=tool_group.d.ts.map