import { EventEmitter } from '../../stencil-public-runtime'; export declare class cSlider { isDragging: boolean; isHovering: boolean; thumb: any; track: any; tooltip: any; trackContainer: any; parent: any; input: EventEmitter; el: HTMLElement; value: number; size: string; tooltipColor: string; tooltipType: string; thumbColor: string; min: number; max: number; step: number; tooltop: boolean; disabled: boolean; changedValue(newVal: number): void; componentWillLoad(): void; componentDidLoad(): void; disconnectedCallback(): void; handleThumbMousedown(): void; handleThumbMouseover(): void; handleThumbMouseleave(): void; handleThumbMouseup(): void; handleTrackContainerMousedown(e: any): void; updateThumbPositionFromValue(): void; handleThumbMousemove(e: any): void; handleThumbKeydown(e: KeyboardEvent): void; setValueWithStep(stepMultiplier: number): void; render(): any; }