// @flow import * as React from "react"; import type { Globals, Component } from "../../common/common.js.flow"; export type Props = {| ...Globals, +active?: boolean, +component?: Component, +children: React.Node, +href?: string, +id?: string, +contentKey?: number, +onClick?: (ev: SyntheticEvent) => void | Promise, |}; declare export default React.ComponentType;