/*! * 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, RelativeTimeFormatterOptions, Unit } from '../types'; export declare function formatRelativeTime(config: GlobalizeConfig, getRelativeTimeFormatter: Formatters['getRelativeTimeFormatter'], value: Date | number, unit: 'auto' | 'best' | Unit, options?: RelativeTimeFormatterOptions): string;