16 lines
595 B
TypeScript
16 lines
595 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import type { ColumnType, StickyOffsets } from '../interface';
|
||
|
|
import Summary from './Summary';
|
||
|
|
type FlattenColumns<RecordType> = readonly (ColumnType<RecordType> & {
|
||
|
|
scrollbar?: boolean;
|
||
|
|
})[];
|
||
|
|
export interface FooterProps<RecordType> {
|
||
|
|
children: React.ReactNode;
|
||
|
|
stickyOffsets: StickyOffsets;
|
||
|
|
flattenColumns: FlattenColumns<RecordType>;
|
||
|
|
}
|
||
|
|
declare function Footer<RecordType>(props: FooterProps<RecordType>): React.JSX.Element;
|
||
|
|
declare const _default: typeof Footer;
|
||
|
|
export default _default;
|
||
|
|
export declare const FooterComponents: typeof Summary;
|