import { DataTestId } from '../../types/data-props.js'; import { MaskingProps } from '../../types/masking-props.js'; import { StylingProps } from '../../types/styling-props.js'; /** * Props for the TimeIndicator component. * @internal */ export interface TimeIndicatorProps extends StylingProps, DataTestId, MaskingProps { /** * The timestamp in milliseconds when the last update happened. */ time: number; } /** * Displays a relative time indicator for a given timestamp. * Shows "Just now" for recent times, otherwise uses minutes/hours/days. * @internal */ export declare const TimeIndicator: (props: TimeIndicatorProps) => import("react/jsx-runtime").JSX.Element;