import { ReactNode } from 'react'; export interface IWalletsLogos { metamask: ReactNode; algosigner: ReactNode; walletconnect: ReactNode; coinbase: ReactNode; [key: string]: ReactNode; } export interface IWalletsLogosCreditCard { crossmint: ReactNode; winter: ReactNode; wert: ReactNode; [key: string]: ReactNode; } declare type TDefaultWallets = { name: string; type: string; }; export declare type TPaymentMethods = TDefaultWallets[]; export interface ISelectedOption { value: string; label: string; } export interface ISelectedWalletProperties { selectedWallet: string; truncatedAddress: string; handleGoBack: () => void; } export {}; //# sourceMappingURL=wallets.d.ts.map