import React from 'react'; import type { ButtonProps } from './button'; export type LoadingIconProps = { prefixCls: string; existIcon: boolean; loading?: boolean | object; className?: string; style?: React.CSSProperties; } & Pick; declare const LoadingIcon: React.FC; export default LoadingIcon;