import { Path, PathValue } from "react-hook-form"; import { useTranslation } from "react-i18next"; import { SelectControl } from "ui-shared"; import { DefaultSwitchControl } from "../../components/SwitchControl"; import { FormAccess } from "../../components/form/FormAccess"; import { convertAttributeNameToForm } from "../../util"; import { FormFields } from "../ClientDetails"; type ToggleProps = { name: PathValue>; label: string; }; export const Toggle = ({ name, label }: ToggleProps) => { const { t } = useTranslation(); return ( ); }; export const SamlConfig = () => { const { t } = useTranslation(); return ( ); };