// @flow import type { Globals } from "../common/common.js.flow"; import TableBody from "./TableBody/index"; import TableHead from "./TableHead/index"; export type Props = {| +compact?: boolean, +children: Array | React$Element>, ...Globals, |}; export type State = {| showShadows: boolean, showLeft: boolean, showRight: boolean, |}; declare export default React$ComponentType;