/*! * React Native Globalize * * Copyright 2015-2020 Josh Swan * Released under the MIT license * https://github.com/joshswan/react-native-globalize/blob/master/LICENSE */ import React from 'react'; import { Globalize } from '../globalize'; export interface WithGlobalizeProps { globalize: Globalize; } export declare const withGlobalize:

(Component: React.ComponentType

) => React.FC>>;