import React from 'react'; export interface IconProps extends Omit, 'ref' | 'tabIndex'> { /** * @see React.SVGAttributes.tabIndex */ tabIndex?: string | number | undefined; title?: string | undefined; } declare const Icon: React.ForwardRefExoticComponent>; export default Icon;