import * as React from 'react'; import { IntlShape, FormatPluralOptions } from '../types'; interface Props extends FormatPluralOptions { value: number; intl: IntlShape; other: React.ReactNode; zero?: React.ReactNode; one?: React.ReactNode; two?: React.ReactNode; few?: React.ReactNode; many?: React.ReactNode; children?(value: React.ReactNode): React.ReactElement | null; } declare const _default: React.ForwardRefExoticComponent & { forwardedRef?: ((instance: any) => void) | React.RefObject | null | undefined; } & React.RefAttributes> & { WrappedComponent: React.ComponentType; }; export default _default;