/// <reference types="react" />
import { IIconProps } from './IconProps';
export interface IIconPropsWithType extends IIconProps {
    icon: string;
}
export default function Icon({ icon, ...rest }: IIconPropsWithType): JSX.Element;
