import type { DataListSelectedType } from "../DataList.types"; export declare function useBatchSelect(): { canSelect: boolean; canSelectAll: boolean; hasAtLeastOneSelected: boolean; isSelectAll: boolean; isSelectSome: boolean; selectedCount: number; selectedIDs: (string | number)[]; selected: DataListSelectedType | undefined; onSelect: ((selected: DataListSelectedType) => void) | undefined; onSelectAll: ((selected: DataListSelectedType) => void) | undefined; };