import { default as React } from 'react'; import { Control } from 'react-hook-form'; import { CheckboxProps, StackProps } from '@mui/material'; interface IDynamicCheckbox { formControl: Control; fieldArrayName: string; name: string; label?: string; position?: number; disabled?: boolean; titlePosition?: 'start' | 'end'; typeOfField?: string; title: string; titleColor?: string; checkboxProps?: CheckboxProps; stackProps?: StackProps; } declare const DynamicCheckBox: React.FC; export default DynamicCheckBox;