import { ConnectorID } from "./types"; import { Wallet, XrplWallet } from "./types/wallet"; export declare const walletIconBaseUrl = "https://raw.githubusercontent.com/0xsquid/assets/main/images/webp128/wallets"; /** * Dynamically accesses a nested property of an object based on a dot-separated string path. * Returns the value of the property if found, otherwise undefined. */ export declare const accessProperty: (object: Record, path: string) => any; export declare const xrplWallets: XrplWallet[]; export declare const multiChainWallets: Wallet[]; export declare const singleChainWallets: Wallet[]; export declare const walletStoreLinks: { [key in ConnectorID]?: { chrome: string; firefox: string; }; };