import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface IconProps extends BaseProps { type: 'info' | 'warn' | 'waiting' | 'cancel' | 'download' | 'search' | 'clear' | 'success' | 'success_no_circle' | 'loading'; size?: number; color?: string; } export declare const Icon: React.ComponentType;