/*! * React Native Globalize * * Copyright 2015-2020 Josh Swan * Released under the MIT license * https://github.com/joshswan/react-native-globalize/blob/master/LICENSE */ import { Formatters, GlobalizeConfig, NumberFormatterOptions, NumberParserOptions } from '../types'; export declare function formatNumber(config: GlobalizeConfig, getNumberFormatter: Formatters['getNumberFormatter'], value: number, options?: NumberFormatterOptions): string; export declare function parseNumber(config: GlobalizeConfig, getNumberParser: Formatters['getNumberParser'], value: string, options?: NumberParserOptions): number;