import { CheckboxGroup } from '../checkboxgroup/checkboxgroup';
import { WebCheckboxProps } from "../../types";
export type { WebCheckboxProps as CheckboxProps } from "../../types";
type CompoundedComponent = React.FC<Partial<WebCheckboxProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'>> & {
    Group: typeof CheckboxGroup;
};
declare const InnerCheckbox: CompoundedComponent;
export default InnerCheckbox;
