import * as React from 'react'; import type { IconDefinition } from '@ant-design/icons-svg/lib/types'; import type { IconBaseProps } from './Icon'; import { getTwoToneColor, TwoToneColor, setTwoToneColor } from './twoTonePrimaryColor'; export interface AntdIconProps extends IconBaseProps { twoToneColor?: TwoToneColor; } export interface IconComponentProps extends AntdIconProps { icon: IconDefinition; } interface IconBaseComponent extends React.ForwardRefExoticComponent> { getTwoToneColor: typeof getTwoToneColor; setTwoToneColor: typeof setTwoToneColor; } declare const Icon: IconBaseComponent; export default Icon;