import { BaseNotNullableInputElementProps, KeyboardElement } from "../../../types"; /** Password component props type */ export type PasswordProps = Omit, "readonly"> & KeyboardElement & { /** * Is clickable icon "Show password" visible. * Will show password on click */ canShowPassword?: boolean; /** * Title for slow password icon * @default "Show password" */ showPasswordIconTitle?: string; }; //# sourceMappingURL=types.d.ts.map