/** * Class for item of checkbox of specified type. */ export declare class CheckboxColumnItem { /** * Property to indicate if the item is selected */ selected: boolean; /** * Original type value of item */ value: T; /** * @ignore */ constructor(value: T); }