export interface BulkSelectorProps { 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(props: BulkSelectorProps): import("react/jsx-runtime").JSX.Element;