react-select-table
Version:
React table component with selectable items
16 lines (15 loc) • 388 B
TypeScript
export default PaginationWrapper;
/**
* Child of {@link Components.Root}.
*
* @name Components.PaginationWrapper
* @type {React.FC}
*/
declare function PaginationWrapper({ paginationComponent: Pagination, actions, utils: { hooks, selectors } }: {
paginationComponent: any;
actions: any;
utils: {
hooks: any;
selectors: any;
};
}): JSX.Element | null;