import React from 'react';
import { IconProps } from '.';
export type IconComponent = React.FC<IconProps> & {
    bothubType?: 'Icon';
};
export declare function icon<Component extends React.FC>(component: Component): IconComponent;
export declare function isIconComponent(component: any): boolean;
