import React from 'react'; export declare type OpacitySliderProps = { /** The current opacity value. Will be between 0 and 1. */ value: number; /** Function to invoke when value changes. */ onValueChange: (value: number) => void; /** Any valid CSS color definition. Hex, rgb, hsl values supported. */ color?: string; /** Additional styles to apply to container. */ containerStyles?: React.CSSProperties; }; /** Slider widget customized for showing/controlling opacity. */ export default function OpacitySlider({ value, onValueChange, color, containerStyles, }: OpacitySliderProps): JSX.Element; //# sourceMappingURL=OpacitySlider.d.ts.map