import type { AdaptedWallet } from '@relayprotocol/relay-sdk'; /** * Hook to detect if explicit deposit should be enabled for a wallet * Uses balance and transaction count checks, plus EOA detection * RPC calls (code, balance, tx count) are cached at the SDK level * Wallet capabilities are always fetched fresh (wallet-provider specific) */ declare const useExplicitDeposit: (wallet?: AdaptedWallet, chainId?: number, chainVmType?: string, userAddress?: string) => boolean | undefined; export default useExplicitDeposit; //# sourceMappingURL=useExplicitDeposit.d.ts.map