import { SmartAccountProvider, type HttpTransport, BaseSmartContractAccount, type AccountMiddlewareFn, type FeeDataMiddleware, type GasEstimatorMiddleware, type PaymasterAndDataMiddleware, type PublicErc4337Client } from "@alchemy/aa-core"; import { AccountSigner } from "@alchemy/aa-ethers"; import { JsonRpcProvider } from "@ethersproject/providers"; import type { SupportedValidators } from "../validator/types.js"; import type { ValidatorProviderParamsMap } from "../validator-provider/types.js"; export declare class ZeroDevEthersProvider extends JsonRpcProvider { readonly accountProvider: SmartAccountProvider; constructor(validatorType: V, params: ValidatorProviderParamsMap[V]); static init(validatorType: V, params: ValidatorProviderParamsMap[V]): Promise>; send(method: string, params: any[]): Promise; connectToAccount(fn: (rpcClient: PublicErc4337Client) => BaseSmartContractAccount): AccountSigner; getAccountSigner(): AccountSigner; withPaymasterMiddleware: (overrides: { dummyPaymasterDataMiddleware?: PaymasterAndDataMiddleware; paymasterDataMiddleware?: PaymasterAndDataMiddleware; }) => this; withGasEstimator: (override: GasEstimatorMiddleware) => this; withFeeDataGetter: (override: FeeDataMiddleware) => this; withCustomMiddleware: (override: AccountMiddlewareFn) => this; getPublicErc4337Client(): PublicErc4337Client; }