import type { IconProps as AntdIconProps } from 'tntd/lib/icon'; import { FC } from 'react'; export interface IconProps extends AntdIconProps { size?: number; color?: string; } export declare const Icon: FC; export default Icon;