import type { CheckboxProps } from 'antd'; type propTypes = { isMultiple?: boolean; label?: string; onChange?: CheckboxProps['onChange']; checked?: boolean; disabled?: boolean; required?: boolean; }; declare const BACheckbox: (props: propTypes) => import("react/jsx-runtime").JSX.Element; export default BACheckbox;