import { TextFieldProps } from '@heroui/react'; import { ReactNode } from 'react'; import { AuthInputVariant } from '../../../lib/auth/core/resolve-auth-input-variant.js'; export interface AuthPasswordFieldProps extends Pick { hidePasswordLabel: string; label: ReactNode; name: string; placeholder?: string; showPasswordLabel: string; variant?: AuthInputVariant; } export declare function AuthPasswordField({ autoComplete, hidePasswordLabel, isDisabled, label, maxLength, minLength, name, onChange, placeholder, showPasswordLabel, value, variant }: AuthPasswordFieldProps): import("react").JSX.Element;