import React from 'react'; declare type TimestampProps = { align?: "left" | "center" | "right"; aria?: { [key: string]: string; }; className?: string | string[]; dark?: boolean; data?: string; text: string; timestamp: Date | string; timezone: string; id?: string; showDate?: boolean; showUser?: boolean; hideUpdated?: boolean; showTimezone?: boolean; unstyled?: boolean; variant?: "default" | "elapsed" | "updated"; }; declare const Timestamp: (props: TimestampProps) => React.ReactElement; export default Timestamp;