import { FC } from 'react'; import { IconProps } from '../../../Icon'; export type PasswordFieldShownIconProps = IconProps; /** * `PasswordFieldShownIcon` is a presentational icon used inside `PasswordField` * to indicate that the password is currently visible. * * The icon reacts to the visibility state provided by `PasswordField` context * and exposes it via a `data-hidden` attribute for styling and transitions. * * It does not handle any interactions or state itself and can be freely * replaced with a custom icon via `children`. */ export declare const PasswordFieldShownIcon: FC;