import { EventEmitter } from '../../stencil-public-runtime'; export declare class cRange { isDragging: boolean; isDraggingStartThumb: boolean; isDraggingEndThumb: boolean; isFocusedStartThumb: boolean; isFocusedEndThumb: boolean; isHovering: boolean; thumbStart: any; thumbEnd: any; tooltipStart: any; tooltipEnd: any; track: any; trackContainer: any; parent: any; input: EventEmitter; el: HTMLElement; value: [number, number]; size: string; tooltipType: string; min: number; max: number; step: number; tooltop: boolean; disabled: boolean; changedValue(newVal: any): void; componentWillLoad(): void; componentDidLoad(): void; disconnectedCallback(): void; handleThumbMousedownStart(): void; handleThumbKeydownStart(e: KeyboardEvent): void; handleThumbMousedownEnd(): void; handleThumbKeydownEnd(e: KeyboardEvent): void; handleThumbMouseover(): void; handleThumbMouseleave(): void; handleThumbMouseup(): void; handleTrackContainerMousedown(e: any): void; updateThumbPositionFromValue(): void; handleThumbMousemove(e: any): void; setValueWithStep(stepMultiplier: number, thumb: string): void; render(): any; }