import type { JSX } from 'react'; type Formats = 'timeago' | 'iso' | 'short' | 'long'; export type LastUpdatedProps = { lastModified: Date; format?: Formats; locale?: string; className?: string; }; export declare function LastUpdated(props: LastUpdatedProps): JSX.Element | null; export {};