import { TextProps } from '@box/blueprint-web'; export interface ReadableTimeProps { /** * The timestamp to be used for displaying the date. */ timestamp: number; /** * If true, future timestamps (typically caused by incorrect operating system time) will be corrected to show the 'isToday' message. * @default true */ allowFutureTimestamps?: boolean; /** * If true, the time will be displayed alongside the date (if the date is shown). * @default false */ alwaysShowTime?: boolean; /** * If true, the weekday will be displayed alongside the date (if the date is shown). * @default false */ showWeekday?: boolean; /** * The threshold (in milliseconds) before which a relative time (rather than an absolute time) will be shown. * Default is 1 hour. * @default ONE_HOUR_MS */ relativeThreshold?: number; /** * If true, the generated string will be uppercase and locale-aware. * @default false */ uppercase?: boolean; /** * Props for the underlying Text component. * @default {} */ textProps?: TextProps; } export declare function ReadableTime({ timestamp, allowFutureTimestamps, alwaysShowTime, showWeekday, relativeThreshold, uppercase, textProps, }: ReadableTimeProps): import("react/jsx-runtime").JSX.Element;