/*! * React Native Globalize * * Copyright 2015-2020 Josh Swan * Released under the MIT license * https://github.com/joshswan/react-native-globalize/blob/master/LICENSE */ import { DateFormatterOptions, Formatters, GlobalizeConfig } from '../types'; export declare function formatDate(config: GlobalizeConfig, getDateFormatter: Formatters['getDateFormatter'], value: Date, options?: DateFormatterOptions): string; export declare function parseDate(config: GlobalizeConfig, getDateParser: Formatters['getDateParser'], value: string, options?: DateFormatterOptions): Date;