import { FC } from 'react'; import type { StyledProps } from '../common'; import type { TdColorPickerProps } from './type'; export interface ColorPickerProps extends TdColorPickerProps, StyledProps { } declare const ColorPicker: FC; export default ColorPicker;