import * as react from 'react';
import { InputHTMLAttributes, ReactNode } from 'react';
interface PasswordInputProps extends Omit, 'type'> {
label?: string;
labelAction?: ReactNode;
error?: string;
}
declare const PasswordInput: react.ForwardRefExoticComponent>;
export { PasswordInput, type PasswordInputProps };