import { type SwapContext } from '../types'; export declare const stringifyWithBigInt: (obj: any) => string; export declare const callReadOnlyFunctionHelper: (contractDeployer: string, contractName: string, functionName: string, parameters: any, senderAddress: string, tokenXId: string, tokenYId: string, swapData: any, context: SwapContext) => Promise<{ convertedResult: number; rawResult: number; tokenXDecimals: number; tokenYDecimals: number; }>; export declare const callReadOnlyFunctionHelperWithoutScaling: (contractDeployer: string, contractName: string, functionName: string, parameters: any, senderAddress: string, tokenXId: string, tokenYId: string, swapData: any, context: SwapContext) => Promise<{ convertedResult: number; rawResult: number; tokenXDecimals: number; tokenYDecimals: number; }>;