@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
14 lines (13 loc) • 548 B
TypeScript
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 {};