import * as React from 'react'; export interface ActivityEventProps extends React.HTMLAttributes { tagColor: string; tagLabel?: string; timestamp: string; children: React.ReactNode; } declare function ActivityEvent({ tagColor, tagLabel, timestamp, children, className, ...props }: ActivityEventProps): import("react/jsx-runtime").JSX.Element; export { ActivityEvent };