import { SENDERS } from '../../index-types';
export declare const resolveMessageTimestamps: (getThemeProperty: any, timestampEnabled: any) => {
    timestampsEnabled: boolean;
    getFormattedTimestamp: any;
    timestampStyle: any;
};
interface MessageTimestampProps {
    timestamp: string;
    style: Record<string, unknown>;
    sentBy: SENDERS;
}
export declare const MessageTimestamp: ({ timestamp, style, sentBy, }: MessageTimestampProps) => JSX.Element;
export {};
