import { CantonWallet } from "../../core/types/wallet"; /** * Discovers Canton browser-extension wallets and maps each to a * {@link CantonWallet}: CIP-103 announce-protocol wallets (on mount and on * window focus), plus injected wallets that ship the CIP-103 RPC surface as a * `window` global instead of announcing (see `INJECTED_CANTON_WALLETS`). */ export declare function useCantonWallets(): { wallets: CantonWallet[]; };