/*! * 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, PluralGeneratorOptions } from '../globalize'; import { TextProps } from './utils'; declare type Props = PluralGeneratorOptions & TextProps & { value: Parameters[0]; other: React.ReactNode; zero?: React.ReactNode; one?: React.ReactNode; two?: React.ReactNode; few?: React.ReactNode; many?: React.ReactNode; }; export declare const FormattedPlural: React.FC; export {};