import { Token } from '../../types'; export declare function checkOnChainPricingNonMulti(network: number, side: SwapSide, balancerV3: BalancerV3, blockNumber: number, prices: ExchangePrices, amounts: bigint[]): Promise; import { SwapSide } from '../../constants'; import { BalancerV3 } from './balancer-v3'; import { BalancerV3Data } from './types'; import { ExchangePrices } from '../../types'; export declare function allPricesAreZero(arr: { prices: bigint[]; }[]): boolean; export declare function testPricesVsOnchain(balancerV3: BalancerV3, network: number, amounts: bigint[], srcToken: Token, dstToken: Token, side: SwapSide, blockNumber: number, limitPools: string[]): Promise;