import { AptosDataCache, AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import { U64 } from '@manahippo/move-to-ts'; import { HexString, AptosClient } from 'aptos'; export declare const packageName = "PancakeSwap"; export declare const moduleAddress: HexString; export declare const moduleName = "swap_utils"; export declare const ERROR_INSUFFICIENT_INPUT_AMOUNT: U64; export declare const ERROR_INSUFFICIENT_LIQUIDITY: U64; export declare const ERROR_INSUFFICIENT_OUTPOT_AMOUNT: U64; export declare function get_amount_in_(amount_out: U64, reserve_in: U64, reserve_out: U64, $c: AptosDataCache): U64; export declare function get_amount_out_(amount_in: U64, reserve_in: U64, reserve_out: U64, $c: AptosDataCache): U64; 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=swap_utils.d.ts.map