// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { DyAbstractLabel, LabelAlignment, IDyLabel } from "./dyAbstractLabel"; export declare class DySlider extends DyAbstractLabel { private static TEMPLATE; protected readonly eLabel: HTMLElement; private readonly eSlider; private readonly eText; protected labelAlignment: LabelAlignment; constructor(config?: IDyLabel); private init; onValueChange(callbackFn: (newValue: number) => void): this; setSliderWidth(width: number): this; setTextFieldWidth(width: number): this; setMinValue(minValue: number): this; setMaxValue(maxValue: number): this; getValue(): string | null | undefined; setValue(value: string): this; setStep(step: number): this; }