import { format } from 'date-fns'; import { Component } from 'react'; export declare type DateFormatOptions = Parameters[2]; export interface RelativeDateProps { className?: string; date: Date | number; /** * Same as 'options' param of 'format' in 'date-fns' package. */ options?: DateFormatOptions; } export interface IRelativeDate extends Component { }