antd
Version:
An enterprise-class UI design language and React components implementation
9 lines (8 loc) • 374 B
TypeScript
import React from 'react';
import type { ColorPickerProps } from './interface';
type CompoundedComponent = React.FC<ColorPickerProps> & {
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
};
declare const ColorPicker: CompoundedComponent;
declare const PurePanel: (props: import("antd/es/_util/type").AnyObject) => React.JSX.Element;
export default ColorPicker;