import { CheckboxProps } from '@chakra-ui/react'; import { FC } from 'react'; declare type Overwrite = Pick> & U; export declare type CheckboxControlProps = Overwrite & { name: string; label?: string; }; export declare const CheckboxControl: FC; export default CheckboxControl;