UNPKG

360 BTypeScriptView Raw
1import * as React from 'react';
2import Cell from './Cell';
3import Row from './Row';
4export interface FooterProps<RecordType> {
5 children: React.ReactNode;
6}
7declare function Footer<RecordType>({ children }: FooterProps<RecordType>): JSX.Element;
8export default Footer;
9export declare const FooterComponents: {
10 Cell: typeof Cell;
11 Row: typeof Row;
12};