import { As, Options, Props } from "ariakit-utils/types"; import { SliderState } from "./slider-state"; export declare const useSliderTrack: import("ariakit-utils").Hook>; export declare const SliderTrack: import("ariakit-utils").Component>; export declare type SliderTrackOptions = Options & { /** * Object returned by the `useSliderState` hook. */ state: SliderState; }; export declare type SliderTrackProps = Props>;