/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { InputHTMLAttributes } from 'react';
export type PasswordInputProps = {
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & Omit<InputHTMLAttributes<HTMLInputElement>, 'aria-invalid' | 'autoCapitalize' | 'autoCorrect' | 'spellCheck' | 'type'>;
/**
 * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-password-input--docs Password Input docs at Amsterdam Design System}
 */
export declare const PasswordInput: import("react").ForwardRefExoticComponent<{
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "autoCapitalize" | "spellCheck" | "autoCorrect" | "aria-invalid"> & import("react").RefAttributes<HTMLInputElement>>;
