import { AnyActivity } from '@argent/x-shared/simulation'; import { ButtonProps } from '@chakra-ui/react'; import { ReactNode } from 'react'; import { HideComponentWithChildren } from '../../types'; export interface ActivityRowProps extends ButtonProps { activity: AnyActivity; networkId: string; additionalInfo?: ReactNode; isHighlighted?: boolean; hideComponent?: HideComponentWithChildren; } declare const ActivityRow: import('react').NamedExoticComponent; export { ActivityRow };