import { FC, ReactNode } from 'react'; import { IFrameConfig } from 'iglooform/es/filter'; import './style'; interface IProps { needShowMore?: boolean; moreDetail?: (record?: any) => ReactNode | string; eventActions: IFrameConfig['options'] | undefined; eventTypes: IFrameConfig['options'] | undefined; eventStatus: IFrameConfig['options'] | undefined; doublePagination?: boolean; pageSizeOptions?: number[]; className?: any; getDataApi: (params: any) => Promise; dataSourceKey?: string; } declare const ActivityLog: FC; export default ActivityLog;