/** * DevExpress Analytics (core\tools\toolbox.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import * as ko from 'knockout'; export interface IToolboxItemInfo { '@ControlType': string; index: number; canDrop?: any; group?: string; displayName?: string; } export declare class ToolboxItem { constructor(info: IToolboxItemInfo); disabled: ko.Observable; info: IToolboxItemInfo; get type(): string; get imageClassName(): string; get imageTemplateName(): string; get index(): number; get displayName(): string; }