import * as React from "react"; import { type SliderProps } from "@/components/ui/slider"; export interface ColorSliderProps extends Omit { trackColor?: string; rangeColor?: string; thumbColor?: string; thumbFillColor?: string; thumbOutlineColor?: string; gradientBackground?: string; sliderType?: "hue" | "saturation" | "lightness" | "custom"; currentHue?: number; currentChroma?: number; } declare const ColorSlider: React.ForwardRefExoticComponent & React.RefAttributes>; export { ColorSlider }; //# sourceMappingURL=color-slider.d.ts.map