import { InputProps } from '../Input'; interface PasswordFieldProps extends Omit { /** * If true, the input will display in an error state with error styling */ error?: boolean; /** * If true, the input will display in a valid state with success styling */ isValid?: boolean; } declare const PasswordField: import('react').ForwardRefExoticComponent>; export { PasswordField }; export type { PasswordFieldProps };