import { AptosDataCache, AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import { U64, U128 } from '@manahippo/move-to-ts'; import { HexString, AptosClient } from 'aptos'; export declare const packageName = "Liquidswap"; export declare const moduleAddress: HexString; export declare const moduleName = "math"; export declare const ERR_DIVIDE_BY_ZERO: U64; export declare function mul_div_(x: U64, y: U64, z: U64, $c: AptosDataCache): U64; export declare function mul_div_u128_(x: U128, y: U128, z: U128, $c: AptosDataCache): U64; export declare function mul_to_u128_(x: U64, y: U64, $c: AptosDataCache): U128; export declare function loadParsers(repo: AptosParserRepo): void; export declare class App { client: AptosClient; repo: AptosParserRepo; cache: AptosLocalCache; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); get moduleAddress(): HexString; get moduleName(): string; } //# sourceMappingURL=math.d.ts.map