import { ReactChild, ReactElement } from 'react'; import { ExclusiveUnion } from '../common'; interface I18nNumberValueShape { value: number; children?: (x: ReactChild) => ReactElement; } interface I18nNumberValuesShape { values: number[]; children: (x: ReactChild[]) => ReactElement; } declare type I18nNumberProps = ExclusiveUnion; declare const I18nNumber: I18nNumberProps; export { I18nNumber };