/* eslint-disable */ // @ts-nocheck import { FieldPath, FieldValues } from "react-hook-form"; import { useTranslation } from "react-i18next"; import type { SwitchControlProps } from "../../shared/keycloak-ui-shared"; import { SwitchControl } from "../../shared/keycloak-ui-shared"; export type DefaultSwitchControlProps< T extends FieldValues, P extends FieldPath = FieldPath, > = Omit, "labelOn" | "labelOff">; export const DefaultSwitchControl = < T extends FieldValues, P extends FieldPath = FieldPath, >( props: DefaultSwitchControlProps, ) => { const { t } = useTranslation(); return ; };