export interface AbsoluteDateProps { /** * Server-sent Timestamp that was fetched from the backend. **Unix time in seconds**. * @remarks We use a `number` instead of `Date` because `Date`s are objects and would cause unnecessary re-renders. `number`s are easier to memoize and to compare. */ value: number; long?: boolean; } declare const _default: import("react").NamedExoticComponent; export default _default;