import { CheckboxProps } from 'antd'; import { FC } from 'react'; import { CheckboxGroupProps } from 'antd/es/checkbox'; import './checkbox.less'; export type SubqlCheckboxProps = CheckboxProps; export declare const SubqlCheckbox: FC & { Group: FC<{ optionType?: "button" | "plain" | undefined; } & CheckboxGroupProps>; };