import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * PasswordField - Secure password input with visibility toggle * Includes show/hide toggle button and masks value in readonly mode */ export declare function PasswordField({ value, onChange, field, readonly, className, ...props }: FieldWidgetComponentProps): React.JSX.Element;