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