import { GetSupportedWalletsOpts } from '@dynamic-labs/multi-wallet'; import { WalletConnectorExtension } from '@dynamic-labs/wallet-connector-core'; interface IChain { enabled: boolean; name: string; } export declare const getEnabledChains: (chains: IChain[]) => ("ALEO" | "STARK" | "STELLAR" | "TEMPO" | "ALGO" | "APTOS" | "ATOM" | "BTC" | "COSMOS" | "ECLIPSE" | "ETH" | "EVM" | "FLOW" | "MIDNIGHT" | "SOL" | "SPARK" | "SUI" | "TRON" | "TON")[]; type BaseGetSupportedWalletOpts = Omit; export declare const getWallets: (props: { getSupportedWalletOpts: BaseGetSupportedWalletOpts; walletConnectorExtensions?: WalletConnectorExtension[]; }) => import("../../shared").WalletOption[]; export {};