import type { FunctionComponent, HTMLAttributes } from 'react';
import React from 'react';
export interface Props {
className?: string;
icon: FunctionComponent>;
}
export declare function Icon({ className, icon: IconComponent }: Props): React.JSX.Element;