// @flow import * as React from "react"; import type { Globals } from "../common/common.js.flow"; import type { Spacing } from "../Stack"; export type Props = {| ...Globals, direction?: "column" | "row", spacing?: Spacing, indent?: boolean, children: React.Node, |}; declare export default React.ComponentType;