import type { AllHTMLAttributes, ReactNode } from 'react'; import { type BoxProps } from '../Box'; export type CheckBoxProps = BoxProps & { indeterminate?: boolean; labelChildren?: ReactNode; } & AllHTMLAttributes; declare const CheckBox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default CheckBox; //# sourceMappingURL=CheckBox.d.ts.map