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