import { ChainType } from "@0xsquid/squid-types"; import type { WalletLinks } from "./types/wallet"; export type FallbackWalletConfig = { chainType: ChainType; id: string; name: string; connectorName: string; icon: string; links: WalletLinks; }; /** * Wallets to show regardless of whether they're detected. * Useful when we want to link to the browser extension store * for wallets that are automatically discovered (i.e. EVM, SOLANA, CANTON...) */ export declare const fallbackWallets: FallbackWalletConfig[];