import { AptosClient } from 'aptos'; import { AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import * as Amm_config from './amm_config'; import * as Amm_math from './amm_math'; import * as Amm_router from './amm_router'; import * as Amm_swap from './amm_swap'; import * as Amm_utils from './amm_utils'; import * as U256 from './u256'; export * as Amm_config from './amm_config'; export * as Amm_math from './amm_math'; export * as Amm_router from './amm_router'; export * as Amm_swap from './amm_swap'; export * as Amm_utils from './amm_utils'; export * as U256 from './u256'; export declare function loadParsers(repo: AptosParserRepo): void; export declare function getPackageRepo(): AptosParserRepo; export type AppType = { client: AptosClient; repo: AptosParserRepo; cache: AptosLocalCache; }; export declare class App { client: AptosClient; repo: AptosParserRepo; cache: AptosLocalCache; amm_config: Amm_config.App; amm_math: Amm_math.App; amm_router: Amm_router.App; amm_swap: Amm_swap.App; amm_utils: Amm_utils.App; u256: U256.App; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); } //# sourceMappingURL=index.d.ts.map