import * as React from "react"; import { Slider as SliderPrimitive } from "radix-ui"; import { type VariantProps } from "class-variance-authority"; declare const sliderTrackVariants: (props?: ({ size?: "default" | "sm" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const sliderThumbVariants: (props?: ({ size?: "default" | "sm" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type SliderProps = React.ComponentProps & VariantProps; declare function Slider({ className, defaultValue, value, min, max, size, ...props }: SliderProps): import("react/jsx-runtime").JSX.Element; export { Slider, sliderTrackVariants, sliderThumbVariants }; //# sourceMappingURL=slider.d.ts.map