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