import React from 'react';
interface IconProps {
    ariaLabel?: undefined | string;
    name: boolean | string;
    iconText?: string;
}
export declare const Icon: React.FC<IconProps>;
export {};
