import * as React from 'react'; import { BoxPropsOf } from '../box'; import { CapUIIcon, CapUIIconSize } from './enums'; export interface IconProps extends Omit, 'size' | 'ref'> { name: CapUIIcon; size?: CapUIIconSize; ref?: React.ForwardedRef; } declare const Icon: React.ForwardRefExoticComponent & React.RefAttributes>; export default Icon;