import React, { FC } from 'react';
interface TnbIconProps {
    className?: string;
    color?: string;
    onClick?(e: React.MouseEvent<SVGSVGElement, MouseEvent>): void;
    size?: number | string;
}
declare const TnbIcon: FC<TnbIconProps>;
export default TnbIcon;
