/*! * React Native Globalize * * Copyright 2015-2020 Josh Swan * Released under the MIT license * https://github.com/joshswan/react-native-globalize/blob/master/LICENSE */ /// export declare const FormattedCurrency: import("react").FC & { currency?: string | undefined; numberStyle?: "symbol" | "code" | "accounting" | "name" | undefined; value: number; } & Pick>; export declare const FormattedDate: import("react").FC>; export declare const FormattedMessage: import("react").FC import("react").ReactElement import("react").Component)> | null) | (new (props: any) => import("react").Component)>> | undefined; } & Pick>; export declare const FormattedNumber: import("react").FC & { numberStyle?: "decimal" | "percent" | undefined; value: number; } & Pick>; export declare const FormattedRelativeTime: import("react").FC>; export declare const FormattedUnit: import("react").FC>; export declare const FormattedTime: import("react").FC>; export * from './FormattedPlural'; export * from './GlobalizeProvider'; export * from './withGlobalize'; export { GlobalizeProvider as FormattedProvider } from './GlobalizeProvider'; export { TextProps } from './utils';