// @flow import type { Values, Key } from "../Translate/index"; type TranslateFunction = (key: Key, values?: Values) => string; export type UseTranslate = () => TranslateFunction; declare export default UseTranslate;