antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
9 lines (8 loc) • 369 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("../_util/type").AnyObject) => React.JSX.Element;
export default ColorPicker;