UNPKG

@wulperstudio/cms

Version:
14 lines (13 loc) 548 B
import React from 'react'; import { FormLabelProps } from '@mui/material/FormLabel'; import { FormGroupProps } from '@mui/material/FormGroup'; import { FormControlProps } from '@mui/material/FormControl'; import { InputTrueFalsePropsModel } from '../../components'; interface SwitchesFormGroupModel { inputs: Array<InputTrueFalsePropsModel>; formControlProps?: FormControlProps; formLabelProps?: FormLabelProps; formGroupProps?: FormGroupProps; } export declare const SwitchesFormGroup: React.FC<SwitchesFormGroupModel>; export {};