import { IObservableArray } from "mobx"; /** Socle commun entre le store de liste et de recherche. */ export declare abstract class ListStoreBase { groupingKey: string | undefined; sortAsc: boolean; sortBy: keyof T | undefined; top: number; readonly selectedList: IObservableArray; protected serverCount: number; protected pendingCount: number; readonly isLoading: boolean; readonly selectedItems: Set; readonly selectionStatus: string; readonly abstract currentCount: number; readonly abstract totalCount: number; toggle(item: T): void; abstract toggleAll(): void; }