import { DappPortalSDKConfig } from '../config/config'; import { WalletProvider } from '../provider/WalletProvider'; export declare class MetricApiClient { private readonly baseUrl; private readonly clientId; private readonly sdkLocalStorage; private readonly trackingId; constructor(config: DappPortalSDKConfig, trackingId: string); sendSdkInitializeMetric: (walletProvider: WalletProvider) => Promise; sendWalletMetric: (action: string, walletAddress: string | null, walletType: string | null) => Promise; getReviewAndSolve: (url: string, body: any) => Promise; }