UNPKG

material-react-table

Version:

A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.

9 lines (8 loc) 347 B
/// <reference types="react" /> import { MRT_TableInstance } from '..'; interface Props<TData extends Record<string, any> = {}> { position: 'top' | 'bottom'; table: MRT_TableInstance<TData>; } export declare const MRT_TablePagination: <TData extends Record<string, any> = {}>({ table, position, }: Props<TData>) => JSX.Element; export {};