import React from 'react'; import { NativeAttributes } from '../Box'; export declare type CheckboxProps = NativeAttributes<'input'> & { /** The label associated with the Checkbox. Appears on the right. */ label?: string; /** Whether the checkbox is currently disabled */ disabled?: boolean; /** Whether the input has an invalid value or not */ invalid?: boolean; /** Whether the input state cannot be determined in binary terms */ indeterminate?: boolean; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;