import { type Wallet as StandardWallet } from "@wallet-standard/core"; type UseWalletsOptions = { filterWallets: (wallets: readonly StandardWallet[]) => T[]; getExtraWallets?: () => StandardWallet[]; }; export declare function useStandardWallets({ filterWallets, getExtraWallets, }: UseWalletsOptions): { wallets: T[]; }; export {};