import React from 'react'; import { TableItem, TablePaginationProps, TableSelectable } from '../types'; export interface SelectAllProps { items: T[]; totalItems?: number; onChange?: TableSelectable['onSelectionChange']; pagination?: TablePaginationProps; selectedItems: Set; } export declare const SelectAll: ({ items, onChange, selectedItems, totalItems, }: SelectAllProps) => React.JSX.Element | null; //# sourceMappingURL=SelectAll.d.ts.map