import { CheckboxColumnItem } from './checkbox-column-item'; /** * Class for list of items of checkbox of specified type. */ export declare class CheckboxListColumn extends Array> { /** * @ignore */ private constructor(); /** * Converts the list of items of specified type into a CheckboxListColumn * @param list of CheckboxListColumn */ static create(list: T[]): CheckboxListColumn; /** * Check if any item of the list is selected */ isAnySelected(): boolean; /** * Get all selected items of the list */ getSelected(): Array; }