import { FC } from 'react'; /** TODO: this is only used in web package - remove from x-ui */ interface ActivityRowWebProps { balance: string; balanceCurrency: string; title: string; subtitle: string; rounded?: string; src: string; } declare const ActivityRowWeb: FC; export { ActivityRowWeb };