import React from 'react';
import type { LocalMessage } from 'stream-chat';
import type { TimestampFormatterOptions } from '../../i18n/types';
export type MessageTimestampProps = TimestampFormatterOptions & {
    customClass?: string;
    message?: LocalMessage;
};
export declare const MessageTimestamp: (props: MessageTimestampProps) => React.JSX.Element;
