import { default as React } from 'react'; export interface RelativeTimeProps { /** Date to display */ date: Date | string | number; /** Show full date on hover */ showTooltip?: boolean; /** Update interval in seconds (0 to disable) */ updateInterval?: number; /** Additional className */ className?: string; } /** * RelativeTime Component * * Displays relative time (e.g., "2 hours ago", "just now"). * Optionally shows full timestamp on hover and auto-updates. * * @example * ```tsx * * * ``` * * @example * ```tsx * * ``` */ export declare const RelativeTime: React.FC; //# sourceMappingURL=relative-time.d.ts.map