// @flow import * as React from "react"; import type { Translation, Globals } from "../common/common.js.flow"; import Illustration from "../Illustration"; export type Props = {| tabIndex?: string | number, onClick?: () => void | Promise, title: Translation, description?: Translation, illustration?: React.Element, actions?: React.Node, children?: React.Node, ...Globals, |}; declare export default React.ComponentType;