/// import { Size } from './types'; declare type ValidateIconProps = { size?: Size; status: 'success' | 'warning' | 'error' | 'validating'; }; declare const ValidateIcon: ({ status, size }: ValidateIconProps) => JSX.Element; export default ValidateIcon;