import * as React from "react"; import { type VariantProps } from "../../../utils.js"; declare const rangeSliderValueVariants: (props?: ({ disabled?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface RangeSliderValueProps extends React.HTMLAttributes, VariantProps { value: string; } declare const RangeSliderValue: ({ value, disabled, className }: RangeSliderValueProps) => React.JSX.Element | null; export { RangeSliderValue, type RangeSliderValueProps };