import { Collection, NftItem } from '@argent/x-shared'; import { FC } from 'react'; interface NftDetailsProps { contractAddress: string; tokenId?: string; networkId: string; safe?: boolean; dataIndex: number; totalData: number; isDisabled?: boolean; isDefaultNetwork?: boolean; amount: bigint; usdValue?: string; nft?: NftItem; collection?: Collection; } export declare const NftDetails: FC; export {};