import { LitElement, PropertyValues } from "lit"; export declare class MjointSliderHandle extends LitElement { #private; pressed: boolean; tooltip: boolean; disabled: boolean; size: number; left: number; value: string; valuePrefix: string; valueSuffix: string; color: "primary" | "secondary"; ariaValueMinAttr?: string; ariaValueMaxAttr?: string; ariaValueNowAttr?: string; ariaValueTextAttr?: string; ariaLabelledByAttr?: string; ariaDescribedByAttr?: string; ariaOrientationAttr?: string; ariaDisabledAttr?: string; private isFocused; start: number; private isDragging; listeners: { mousedown: (ev: MouseEvent | TouchEvent) => void; mousemove: (ev: MouseEvent | TouchEvent) => void; mouseup: (ev: MouseEvent | TouchEvent) => void; }; render(): import("lit-html").TemplateResult<1>; connectedCallback(): void; disconnectedCallback(): void; protected firstUpdated(_changedProperties: PropertyValues): void; protected updated(_changedProperties: Map): void; setLeftPosition(left: number): void; setLeft(): void; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { "mjoint-slider-handle": MjointSliderHandle; } } //# sourceMappingURL=mjoint-slider-handle.d.ts.map