@botonic/react
Version:
Build Chatbots using React
14 lines (13 loc) • 501 B
TypeScript
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) => import("react/jsx-runtime").JSX.Element;
export {};