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