import * as React from 'react'; import { FieldElementWrapperProps } from '../../components/field-wrapper/FieldWrapper'; import { PasswordInput } from '../../components/password-input/PasswordInput'; type PasswordFieldProps = React.ComponentProps & Omit & { label?: string; }; export declare const PasswordField: { ({ className, hideLabel, label, name, prompt, description, validation, appearance, theme, ...remainingProps }: PasswordFieldProps): React.JSX.Element; displayName: string; }; export {};