import { default as React } from 'react'; import { SafeOmit, SafePick } from '../../../.deps/utils/src'; import { FieldProps } from '../../Field/Field'; import { FieldHelperTextProps } from '../../Field/FieldHelperText'; import { FieldLabelProps } from '../../Field/FieldLabel'; import { PasswordInputProps } from '../../Inputs/PasswordInput/PasswordInput'; /** @inheritdoc */ export interface PasswordFieldProps extends SafePick, SafePick, SafeOmit, SafePick { /** Label for the input element. */ label: string; /** Visually hide the label. ß*/ labelHidden?: FieldLabelProps['visuallyHidden']; strengthIndicator?: boolean; filled?: boolean; } export declare const PasswordField: ({ label, tooltip, required, disabled, readOnly, error, warning, hint, filled, justify, labelHidden, strengthIndicator, onChange, onFocus, onBlur, value: externalValue, ref, ...inputProps }: PasswordFieldProps) => React.JSX.Element;