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