import { CSSProperties, FC } from 'react'; import type { ActivityItemType } from './types'; import './style'; interface IActivityItem { title: React.ReactNode | string; extra?: React.ReactNode | string; type: ActivityItemType; showOperator?: boolean; operator?: React.ReactNode | string; content?: React.ReactNode | string; } interface IProps { list: IActivityItem[]; className?: string; style?: CSSProperties; } declare const ActivityList: FC; export default ActivityList;