import { As, Options, Props } from "ariakit-utils/types"; import { SliderThumbState } from "./slider-thumb-state"; export declare const useSliderInput: import("ariakit-utils").Hook>; export declare const SliderInput: import("ariakit-utils").Component>; export declare type SliderInputOptions = Options & { /** * Object returned by the `useSliderState` hook. */ state: SliderThumbState; }; export declare type SliderInputProps = Props>;