import type { FC, MouseEventHandler } from 'react'; export interface WalletListItemProps { handleClick: MouseEventHandler; tabIndex?: number; wallet: any; } export declare const WalletListItem: FC;