import type * as types from "./types"; export interface CheckBox extends types.ElementBase, types.EditableElement, types.ElementWithTextLabel { /** Indicates that the element is checked or not. */ readonly checked?: boolean; /** Indicates the current value. */ readonly value?: any; }