import React, { ReactNode } from "react"; export interface ReplySectionProps { totalMessages: number; newMessages: number; avatars: Array<{ name?: string; emoji?: string; visual?: string | React.ReactNode; isRounded?: boolean; backgroundColor?: string; }>; lastMessageBy: string; } export declare function ReplySection({ totalMessages, newMessages, avatars, lastMessageBy }: ReplySectionProps): React.JSX.Element; export interface ConversationListItemProps { conversation: { id: string; title: string; description?: string; updatedAt: Date; }; avatar?: { name?: string; emoji?: string; visual?: string | React.ReactNode; isRounded?: boolean; backgroundColor?: string; }; creator?: { fullName: string; portrait?: string; }; time: string; replySection?: ReactNode; onClick?: () => void; } export declare function ConversationListItem({ conversation, avatar, creator, time, replySection, onClick }: ConversationListItemProps): React.JSX.Element; //# sourceMappingURL=ConversationListItem.d.ts.map