import { Control } from 'react-hook-form'; import { ISwitchProps } from '../../../toggle-switch/toggle-switch'; interface IDynamicToggleButton { formControl: Control; fieldArrayName: string; name: string; label: string; position: number; disabled?: boolean; titlePosition?: "start" | "end"; typeOfField?: string; title: string; toggleSwitchProps?: ISwitchProps; } declare const DynamicToggleButton: React.FC; export default DynamicToggleButton;