/** * The DiscussionContext wraps static details about a discussion and all * discussion-wide callbacks that are provided to all Comment components. * * You MUST wrap components which require the DiscussionContext in the provider. * There is no default value. The components which require DiscussionContext * are very likely to crash if you forget to provide the context. */ export const DiscussionContext: React.Context; export function formatTimeRelative(date: any, { now, t, ...options }: { [x: string]: any; now: any; t: any; }): any; import React from "react";