import type { ReactElement } from "react"; import React from "react"; type PasswordInputButtonProps = { onIconClick?: (e: React.MouseEvent) => void; hasError: boolean; disabled: boolean; readOnly: boolean; ariaLabel: string; isPasswordVisible: boolean; onToggle: () => void; }; export declare const PasswordInputButton: ({ hasError, disabled, onIconClick, readOnly, ariaLabel, isPasswordVisible, onToggle, }: PasswordInputButtonProps) => ReactElement; export {};