import "dayjs/locale/nl"; /** * Get relative time but prevent future timestamps from showing "in a few seconds" * This handles cases where server timestamps are slightly ahead of client time * due to clock synchronization differences or network latency */ export declare const getSafeRelativeTime: (timestamp: number | string | Date, locale?: string) => string;