UNPKG

369 BTypeScriptView Raw
1import React from 'react';
2import type { ColorPickerProps } from './interface';
3type CompoundedComponent = React.FC<ColorPickerProps> & {
4 _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
5};
6declare const ColorPicker: CompoundedComponent;
7declare const PurePanel: (props: import("../_util/type").AnyObject) => React.JSX.Element;
8export default ColorPicker;