import React from 'react'; import { Control } from 'react-hook-form'; export interface CheckboxProps { name: string; control: Control; disabled?: boolean; errorMsg?: string; wrapperCls?: string; children?: React.ReactNode; onChange?: (e: any) => void; cy?: { wrapper?: string; message?: string; checkbox?: string; }; } declare const Checkbox: React.FC; export default Checkbox;