import React, { FC } from 'react'; interface SpecIconProps { type?: 'colour' | 'font'; name?: string; size?: number | string; className?: string; status?: 'normal' | 'offline' | 'outline' | 'error' | 'warning' | 'success'; round?: boolean; title?: string; onClick?: React.MouseEventHandler; style?: React.CSSProperties; noPrefix?: boolean; prefix?: 'speci' | string; } declare const SpecIcon: FC; export default SpecIcon;