// @flow import * as React from "react"; export type Translations = { [key: string]: string, }; export type DictionaryContextType = React.Context; export type Props = { +values: Translations, +children: React$Node, }; type WithDictionary = (a: React.ComponentType) => React.ComponentType; declare export default React$ComponentType; declare export var DictionaryContext: DictionaryContextType; declare export var withDictionary: WithDictionary;