import * as React from 'react'; import type { BaseFieldVariantProps } from '../base-field'; import type { TextFieldProps } from '../text-field'; interface PasswordFieldProps extends Omit, BaseFieldVariantProps { togglePasswordLabel?: string; endSlot?: React.ReactElement | string | number; } declare const PasswordField: React.ForwardRefExoticComponent & React.RefAttributes>; export { PasswordField }; export type { PasswordFieldProps };