import { IGlobalAttributes, IReferenceable, ICustomizable } from '../core'; import { Switchable } from '../switch-group'; import { ControlIntent } from '../controls/control-skeleton/types'; interface CheckboxInputProps extends IGlobalAttributes, IReferenceable, Switchable, ICustomizable { indeterminate?: boolean; disabled?: boolean; autoFocus?: boolean; intent?: ControlIntent.Primary | ControlIntent.Danger; } export declare function CheckboxInput(props: Partial): JSX.Element; export {};