import { UserOperation, UserOpGasFields } from '@biconomy-sdk-dev/core-types'; export declare class HttpRpcClient { readonly bundlerUrl: string; readonly entryPointAddress: string; readonly chainId: number; readonly dappAPIKey: string; private readonly userOpJsonRpcProvider; constructor(bundlerUrl: string, entryPointAddress: string, chainId: number, dappAPIKey: string); validateChainId(): Promise; sendUserOpToBundler(userOp1: UserOperation): Promise; getUserOpGasAndGasPrices(userOp: Partial): Promise; estimateUserOpGas(userOp1: Partial): Promise; private printUserOperation; }