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