/** * Heuristic over wallet/provider error shapes — `UserRejectedRequestError` et * al. share no common code across providers, but all match on name/message. * Feature-agnostic (not withdrawal-specific); mirrors @funkit/connect's * `utils/signature.ts`. */ export declare function isUserRejectedError(error: unknown): boolean; /** * Wallets name these rather than coding them — `SwitchChainError` or * `SwitchChainNotSupportedError`. Verbatim from @funkit/connect's * `utils/signature.ts` so both SDKs classify the same failure the same way. */ export declare function isSwitchChainError(error: unknown): boolean; //# sourceMappingURL=signature.d.ts.map