import React from 'react'; export interface ActivityProps { sender: string; href: string; children?: React.ReactNode; } export declare function Activity(props: ActivityProps): import("react/jsx-runtime").JSX.Element;