import BaseComponent from "./BaseComponent";
declare class RangeInput extends BaseComponent {
    private _label;
    private _min;
    private _max;
    private _value;
    private _prevValue;
    private _props;
    private componentName;
    constructor();
    static get observedAttributes(): string[];
    attributeChangedCallback(name: string, oldValue: any, newValue: any): void;
    private updateThumbAndFill;
    private handleDrag;
    connectedCallback(): void;
}
export default RangeInput;
