import { Slider as SliderPrimitive } from '@base-ui/react'; import { type VariantProps } from 'class-variance-authority'; declare const slider: (props?: ({ variant?: "range" | "single" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface SliderProps extends SliderPrimitive.Root.Props, VariantProps { label?: string | [string, string]; thumbSize?: 'small' | 'large'; } declare function SliderRoot({ className, variant, label, thumbSize, ...props }: SliderProps): import("react/jsx-runtime").JSX.Element; declare namespace SliderRoot { var displayName: string; } declare function SliderValue(props: SliderPrimitive.Value.Props): import("react/jsx-runtime").JSX.Element; declare namespace SliderValue { var displayName: string; } export declare const Slider: typeof SliderRoot & { Value: typeof SliderValue; }; export {}; //# sourceMappingURL=slider.d.ts.map