import { IBaseNFTType } from './assets'; import { ChainId } from './chain'; export declare enum TransactionEnum { TRANSFER = "Transfer", CROSS_CHAIN_TRANSFER = "CrossChainTransfer", CLAIM_TOKEN = "ClaimToken" } export type TransactionFees = { symbol: string; fee: number; feeInUsd: string; decimals: string; }; export type TransactionTypes = `${TransactionEnum}`; export type ActivityItemType = { transactionType: TransactionTypes; transactionName?: string; from: string; to: string; fromAddress: string; toAddress: string; fromChainId: ChainId; toChainId: ChainId; status: string; transactionId: string; blockHash: string; timestamp: string; isReceived: boolean; amount: string; symbol: string; decimals?: string; priceInUsd?: string; nftInfo?: IBaseNFTType; transactionFees: TransactionFees[]; listIcon?: string; isDelegated?: boolean; }; //# sourceMappingURL=activity.d.ts.map