import React, { Dispatch, SetStateAction } from 'react'; import { TableExpandable, TableItem, TablePaginationProps, TableProps, TableSelectable } from '../types'; export interface SelectAllProps { getChildren?: TableExpandable['getChildren']; items: T[]; onChange?: TableSelectable['onSelectionChange']; selectedItems: TableSelectable['selectedItems']; totalItems?: number; pagination?: TablePaginationProps; getRowId: NonNullable['getRowId']>; setSelectedParentRowsCrossPages: Dispatch>>; selectedParentRowsCrossPages: Set; isChildrenRowsSelectable?: boolean; } export declare const SelectAll: (props: SelectAllProps) => React.JSX.Element; //# sourceMappingURL=SelectAll.d.ts.map