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