import type { Locale } from "../_lib/types"; export interface Options { locale?: Locale; addSuffix?: boolean; } export default function formatDistanceToNow(date: string, options?: Options): string;