/* eslint-disable */ // @ts-nocheck import { useTranslation } from "react-i18next"; import { PasswordControl } from "../../../shared/keycloak-ui-shared"; import type { ComponentProps } from "./components"; export const PasswordComponent = ({ name, label, helpText, defaultValue, required, isDisabled = false, convertToName, }: ComponentProps) => { const { t } = useTranslation(); return ( ); };