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