import React from "react"; import type { CommonFormFieldProps, FormFieldProps } from "../FormField"; interface InputPasswordProps extends CommonFormFieldProps, Pick { readonly value?: string; onChange?(newValue: string): void; /** * Display toggle to change the visibility of the password input * @default false */ readonly hasVisibility?: boolean; } export declare function InputPassword(props: InputPasswordProps): React.JSX.Element; export {};