import React from "react";
interface AnimatedRangeInputProps {
    value: number;
    onChange: (value: number) => void;
    icon?: React.ReactNode;
    labelId: string;
    fillColor?: string;
}
declare const AnimatedRangeInput: React.FC<AnimatedRangeInputProps>;
export default AnimatedRangeInput;
//# sourceMappingURL=animated-range-input.d.ts.map