import type { WalletType } from "../Models/WalletType"; export interface RequestArguments { method: string; params?: any; id?: number | string; jsonrpc?: string; } export interface ProviderError { message: string; code: number | string; data?: unknown; } export declare const notSupportMethods: string[]; export declare const signerMethods: string[]; export interface ParticleConnectOptions { projectId: string; clientKey: string; walletType: WalletType; publicAddress?: string; } export interface ConnectionOptions extends ParticleConnectOptions { chainId: number; } //# sourceMappingURL=types.d.ts.map