import { WidgetEventOptions } from './BaseWidget'; import { INumericWidget } from '../types/widgets'; import { BaseSteppedWidget } from './BaseSteppedWidget'; export declare class NumberWidget extends BaseSteppedWidget implements INumericWidget { type: "number"; get _displayValue(): string; canIncrement(): boolean; canDecrement(): boolean; incrementValue(options: WidgetEventOptions): void; decrementValue(options: WidgetEventOptions): void; setValue(value: number, options: WidgetEventOptions): void; onClick({ e, node, canvas }: WidgetEventOptions): void; /** * Handles drag events for the number widget * @param options The options for handling the drag event */ onDrag({ e, node, canvas }: WidgetEventOptions): void; }