import { OnChainTradeType } from "../../../common/models/on-chain-trade-type"; import { BerachainTestnetAlgebraTrade } from "./berachain-testnet-algebra-trade"; import { BerachainTestnetAlgebraRoute } from "./models/berachain-testnet-algebra-route"; import { AlgebraQuoterController } from "../../common/algebra/algebra-quoter-controller"; import { UniswapV3AlgebraTradeStructOmitPath } from "../../common/uniswap-v3-algebra-abstract/models/uniswap-v3-algebra-trade-struct"; import { UniswapV3AlgebraAbstractProvider } from "../../common/uniswap-v3-algebra-abstract/uniswap-v3-algebra-abstract-provider"; export declare class BerachainTestnetAlgebraProvider extends UniswapV3AlgebraAbstractProvider { protected readonly contractAddress = "0x1A69E9B9F43602F1f9a3C98874732b18B09B526D"; protected readonly contractAbi: import("web3-utils").AbiItem[]; readonly blockchain: "BERACHAIN_TESTNET"; protected readonly OnChainTradeClass: typeof BerachainTestnetAlgebraTrade; protected readonly providerConfiguration: import("../../common/uniswap-v3-algebra-abstract/models/uniswap-v3-algebra-provider-configuration").UniswapV3AlgebraProviderConfiguration; protected readonly quoterController: AlgebraQuoterController; get type(): OnChainTradeType; protected createTradeInstance(tradeStruct: UniswapV3AlgebraTradeStructOmitPath, route: BerachainTestnetAlgebraRoute, providerAddress: string): BerachainTestnetAlgebraTrade; }