// @flow /* DOCUMENTATION: https://orbit.kiwi/components/table/ */ import type { Globals } from "../common/common.js.flow"; import typeof TableBodyType from "./TableBody/index.js.flow"; import typeof TableCellType from "./TableCell/index.js.flow"; import typeof TableHeadType from "./TableHead/index.js.flow"; import typeof TableRowType from "./TableRow/index.js.flow"; export type Props = {| +compact?: boolean, +children: React$Node, ...Globals, |}; declare export default React$ComponentType; declare export var TableBody: TableBodyType; declare export var TableCell: TableCellType; declare export var TableHead: TableHeadType; declare export var TableRow: TableRowType;