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 = "Cetue-AMM"; export declare const moduleAddress: HexString; export declare const moduleName = "amm_utils"; export declare const EPARAMETER_INVALID: U64; export declare const ESWAP_COIN_NOT_EXISTS: U64; export declare function get_amount_out_(amount_in: U128, reserve_in: U128, reserve_out: U128, fee_numerator: U64, fee_denumerator: 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=amm_utils.d.ts.map