import type { Chain } from '@wagmi/core/chains'; import type { HttpTransport } from 'viem'; interface Options { projectId: string; } export declare function walletConnectProvider({ projectId }: Options): (chain: Chain) => HttpTransport | null; export {};