export interface BulkSelectorProps<T> {
    itemCount?: number;
    pageItems?: T[];
    selectedItems?: T[];
    selectItems?: (items: T[]) => void;
    unselectAll?: () => void;
    keyFn: (item: T) => string | number;
    selectNoneText?: string;
    maxSelections?: number;
}
export declare function BulkSelector<T extends object>(props: BulkSelectorProps<T>): import("react/jsx-runtime").JSX.Element;
