import React from 'react';
import { Icon as IconType } from '../types/alertTypes';
type Props = {
    icon: IconType;
    iconColor?: string;
    ios?: boolean;
};
export declare const Icon: ({ icon, iconColor, ios }: Props) => React.JSX.Element;
export {};
