import type { FC } from 'react';
import type { BaseColorPickerProps } from '../interface';
export type PickerProps = BaseColorPickerProps;
declare const Picker: FC<PickerProps>;
export default Picker;
