import AbstractComponent from '../../globals/ts/abstract-component';
export default class Slider extends AbstractComponent {
    static readonly NAME = "nj-slider";
    protected static readonly DATA_KEY = "nj.slider";
    private static readonly CLASS_NAME;
    protected static readonly SELECTOR: {
        default: string;
        input: string;
        label: string;
    };
    private static readonly THUMB_WIDTH;
    private static readonly DEFAULT_TYPE;
    protected static readonly DEFAULT_OPTIONS: {
        tooltip: boolean;
    };
    private static readonly PERCENT_CONV;
    private static readonly PSEUDO_ELEMS;
    private dataId;
    private input;
    private tooltip;
    private currentProgress;
    constructor(element: HTMLElement, options?: {});
    private setListeners;
    private setTooltipListeners;
    private refreshProgressValue;
    private refreshTooltipValue;
    private static getOptions;
    dispose(): void;
    static getInstance(element: HTMLElement): Slider;
    static init(options?: {}): Slider[];
}
