import React, { ComponentProps } from 'react'; import { Checkbox } from 'antd'; type CheckboxGroupProps = ComponentProps & { /** Arrange items vertically instead of inline. */ vertical?: boolean; }; declare const CheckboxGroup: (props: CheckboxGroupProps) => React.ReactNode; export default CheckboxGroup;