export type ActivityRowProps = { variant: "message" | "event"; accountType: "personal" | "team"; title: string; description: React.ReactNode; time?: string; unread?: boolean; thumbnail?: string; avatar: { background?: string; imageSrc?: string; displayName?: string; }; selectable?: boolean; stacked?: boolean; showUnread?: boolean; }; export declare const ActivityRow: ({ variant, accountType, title, description, thumbnail, time, avatar, unread, stacked, selectable, showUnread, }: ActivityRowProps) => import("react").JSX.Element; //# sourceMappingURL=ActivityRow.d.ts.map