import * as React from "react"; import { type VariantProps } from "../../../utils.js"; declare const sliderTooltipVariants: (props?: ({ side?: "bottom" | "top" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type SliderTooltipProps = VariantProps & { textValue: string; showTooltip?: boolean; tooltipSide?: "top" | "bottom"; }; declare const SliderTooltip: ({ textValue, showTooltip, tooltipSide }: SliderTooltipProps) => React.JSX.Element | null; export { SliderTooltip, type SliderTooltipProps };