// @flow import * as React from "react"; import type { Globals, Translation } from "../common/common.js.flow"; export type Props = {| ...Globals, +title: Translation, +onClick?: (SyntheticEvent) => void | Promise, |}; declare export default React.ComponentType;