import { API as NoUiSlider } from 'nouislider'; import { LuzmoElement } from '../../utils/base'; declare const LuzmoSlider_base: typeof LuzmoElement & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; }; export declare class LuzmoSlider extends LuzmoSlider_base { static styles: import("lit").CSSResult[]; get _slider(): HTMLDivElement | null; label: string; value: number; min: number; max: number; step: number; disabled: boolean; debounce: number; noUiSlider: NoUiSlider; debounceTimeout: any; _doingUpdate: boolean; firstUpdated(): void; private _applyHandleLabels; updated(changedProperties: Map): void; private setValue; render(): import("lit-html").TemplateResult<1>; } export {};