// @flow import * as React from "react"; export type Globals = {| +dataTest?: string, |}; export type RefType = { current: null | HTMLElement } | ((null | HTMLElement) => mixed); export type Ref = {| +ref?: RefType, |}; export type Translation = React$Element> | string; export type TranslationString = string; export type Component = () => React$Element;