// @flow import * as React from "react"; import type { Status } from "../.."; export type Props = {| +date: string, +time: React.Node, +city: React.Node, +station: React.Node, +hidden?: boolean, +type?: Status, +canceled?: boolean, +minWidth?: number, +icon?: React.Node, |}; declare export default React.ComponentType;