import { FC, HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { image: string; loading: boolean; wallet: any; handleWalletOperation: any; } export declare const UniversalWalletCard: FC;