UNPKG

mantine-react-table

Version:

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

13 lines (12 loc) 395 B
import { FC } from 'react'; import { VirtualItem } from '@tanstack/react-virtual'; import type { MRT_HeaderGroup, MRT_TableInstance } from '..'; interface Props { footerGroup: MRT_HeaderGroup; table: MRT_TableInstance; virtualColumns?: VirtualItem[]; virtualPaddingLeft?: number; virtualPaddingRight?: number; } export declare const MRT_TableFooterRow: FC<Props>; export {};