import * as React from 'react'; import type { ISliderProps } from './Slider.types'; import type { ILabelProps } from '../Label/index'; export declare const ONKEYDOWN_TIMEOUT_DURATION = 1000; export declare const useSlider: (props: ISliderProps, ref: React.ForwardedRef) => { root: React.HTMLAttributes & React.RefAttributes; label: ILabelProps | undefined; sliderBox: React.HTMLAttributes & React.RefAttributes; container: React.HTMLAttributes; valueLabel: ILabelProps | undefined; lowerValueLabel: ILabelProps | undefined; thumb: React.HTMLAttributes; lowerValueThumb: React.HTMLAttributes | undefined; zeroTick: React.HTMLAttributes | undefined; activeTrack: React.HTMLAttributes; topInactiveTrack: React.HTMLAttributes; bottomInactiveTrack: React.HTMLAttributes; sliderLine: React.HTMLAttributes; };