// @flow /* DOCUMENTATION: https://orbit.kiwi/components/itinerary/itinerarypart */ import * as React from "react"; import type { Globals } from "../../common/common.js.flow"; import type { spaceAfter } from "../../common/getSpacingToken"; export type Props = {| +noElevation?: boolean, +onClick?: (ev: SyntheticEvent) => void | Promise, +children: React.Node, +actionable?: boolean, ...Globals, ...spaceAfter, |}; declare export default React.ComponentType;