import React from 'react';
import type { IonicReactProps } from './IonicReactProps';
interface IonIconProps {
    color?: string;
    flipRtl?: boolean;
    icon?: string;
    ios?: string;
    lazy?: boolean;
    md?: string;
    mode?: 'ios' | 'md';
    name?: string;
    size?: string;
    src?: string;
}
export declare const IonIcon: React.ForwardRefExoticComponent<IonIconProps & IonicReactProps & Omit<React.HTMLAttributes<HTMLIonIconElement>, "style" | "placeholder"> & React.RefAttributes<HTMLIonIconElement>>;
export {};
