import React from 'react'; import { DefaultProps, FlowindSize, Selectors } from '../../../styles'; import { ThumbStylesNames } from '../thumb/thumb'; import { HsvaColor } from '../types'; import useStyles from './saturation.styles'; export type SaturationStylesNames = Exclude, 'saturationOverlay' | 'saturationThumb'> | ThumbStylesNames; interface SaturationProps extends DefaultProps { variant?: string; value: HsvaColor; onChange: (color: Partial) => void; onChangeEnd: (color: Partial) => void; saturationLabel?: string; size: FlowindSize; color: string; focusable?: boolean; __staticSelector?: string; } export declare function Saturation({ value, onChange, onChangeEnd, focusable, __staticSelector, size, color, saturationLabel, classNames, styles, unstyled, variant, }: SaturationProps): React.JSX.Element; export declare namespace Saturation { var displayName: string; } export {};