import React from 'react'; import { Control } from 'react-hook-form'; export interface SwitcherProps { control: Control; name: string; errorMsg?: string; cy?: { wrapper?: string; message?: string; switch?: string; }; } declare const Switcher: React.FC; export default Switcher;