export declare class AsiTableSelectionModel {
    nbItemsSelected: number;
    itemsIncluded: Array<any>;
    itemsExcluded: Array<any>;
    allChecked: boolean;
    config: {
        selectionId: string;
        multipage: boolean;
    };
    constructor(selectionId: string, multipage: boolean);
}
