/** @packageDocumentation * @module Common */ /** State of a checkbox * @public */ export declare enum CheckBoxState { Off = 0, On = 1, Partial = 2 } /** A data type that holds all the checkbox display attributes * @public */ export interface CheckBoxInfo { isVisible?: boolean; isDisabled?: boolean; state?: CheckBoxState; tooltip?: string; } //# sourceMappingURL=CheckBoxState.d.ts.map