// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { spaceAfter } from "../../common/getSpacingToken/index.js.flow"; import type { Props as BadgeListProps } from "../../BadgeList/index.js.flow"; import type { Props as ItineraryBadgeListItemProps } from "./ItineraryBadgeListItem.js.flow"; export type Props = {| +children: React.Node, ...BadgeListProps, ...spaceAfter, |}; declare export var StyledWrapper: StyledComponent; declare export var ItineraryBadgeListItem: React.ComponentType; declare export default React.ComponentType;