import { FieldValues, UseFormReturn } from 'react-hook-form'; import { AppFormField } from '../AppForm/AppFormField'; import './style.scss'; type Props = { fields: AppFormField[]; form: UseFormReturn; onToggle: (attr: string, value: boolean) => void; hasRole?: (role: string) => boolean; className?: string; }; export default function AppSwitchGroup({ fields, form, onToggle, hasRole, className, }: Props): import("react").JSX.Element; export {};