import { FC } from 'react'; import { IconButtonProps } from '../../../IconButton'; export type PasswordFieldToggleIconButtonProps = IconButtonProps; /** * `PasswordFieldToggleButton` is an action button used within `PasswordField` * to toggle password visibility. * * It connects to `PasswordField` context to switch between hidden and shown * states and inherits sizing from the surrounding `TextField` for visual * consistency. * * The button does not manage any state itself and is intended to be composed * with visibility icons inside `PasswordField`. */ export declare const PasswordFieldToggleIconButton: FC;