import { Provider } from '@ethersproject/providers'; import { Token } from '../../types'; import { EkuboContracts } from './types'; export declare const NATIVE_TOKEN_ADDRESS = 0n; export declare function convertParaSwapToEkubo(address: string): bigint; export declare function convertEkuboToParaSwap(address: bigint): string; export declare function convertAndSortTokens(tokenA: Token, tokenB: Token): [bigint, bigint]; export declare function ekuboContracts(provider: Provider): EkuboContracts; export declare const bigintMax: (a: bigint, b: bigint) => bigint; export declare const bigintMin: (a: bigint, b: bigint) => bigint;