import { InputHTMLAttributes, ReactElement } from 'react'; type CheckboxProps = InputHTMLAttributes & { value?: string | number; }; export type CheckboxPrimitiveType = Omit & { id?: string; indeterminate?: boolean; label: string | ReactElement; isInline?: boolean; name: string; }; declare const CheckboxPrimitive: import("react").ForwardRefExoticComponent & { id?: string; indeterminate?: boolean; label: string | ReactElement; isInline?: boolean; name: string; } & import("react").RefAttributes>; export default CheckboxPrimitive;