import * as React from 'react'; export interface IPasswordRevealProps { hidePasswordIcon?: React.ComponentType | string; onTogglePasswordReveal: React.Dispatch>; /** * @type bool */ showing: boolean; showPasswordIcon?: React.ComponentType | string; }