/**
* DevExtreme (ui/track_bar.d.ts)
* Version: 20.1.7
* Build date: Tue Aug 25 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import Editor, {
    EditorOptions
} from './editor/editor';

/** Warning! This type is used for internal purposes. Do not import it directly. */
export interface dxTrackBarOptions<T = dxTrackBar> extends EditorOptions<T> {
    /** The maximum value the widget can accept. */
    max?: number;
    /** The minimum value the widget can accept. */
    min?: number;
}
/** Warning! This type is used for internal purposes. Do not import it directly. */
/** A base class for track bar widgets. */
export default class dxTrackBar extends Editor {
    constructor(element: Element, options?: dxTrackBarOptions)
    constructor(element: JQuery, options?: dxTrackBarOptions)
}
