UNPKG

459 BTypeScriptView Raw
1import type * as React from 'react';
2export interface SummaryProps {
3 fixed?: boolean | 'top' | 'bottom';
4 children?: React.ReactNode;
5}
6/**
7 * Syntactic sugar. Do not support HOC.
8 */
9declare function Summary({ children }: SummaryProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
10declare namespace Summary {
11 var Row: typeof import("./Row").default;
12 var Cell: typeof import("./Cell").default;
13}
14export default Summary;