Add IonIcon in types/components.d.ts

Could you add please the IonIcon interface in the file types/components.d.ts?

interface IonIcon {
  ariaLabel?: string;
  color?: string;
  flipRtl?: boolean;
  icon?: string;
  ios?: string;
  lazy?: boolean;
  md?: string;
  mode?: 'ios' | 'md';
  name?: string;
  size?: string;
  src?: string;
}

I want to use this interface. For example, I have used IonInput and IonButto, but I did not found IonIcon.