import { AptosClient } from 'aptos'; import { AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import * as Coin_helper from './coin_helper'; import * as Curves from './curves'; import * as Liquidity_pool from './liquidity_pool'; import * as Math from './math'; import * as Router_v2 from './router_v2'; import * as Scripts from './scripts'; import * as Stable_curve from './stable_curve'; export * as Coin_helper from './coin_helper'; export * as Curves from './curves'; export * as Liquidity_pool from './liquidity_pool'; export * as Math from './math'; export * as Router_v2 from './router_v2'; export * as Scripts from './scripts'; export * as Stable_curve from './stable_curve'; 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; coin_helper: Coin_helper.App; curves: Curves.App; liquidity_pool: Liquidity_pool.App; math: Math.App; router_v2: Router_v2.App; scripts: Scripts.App; stable_curve: Stable_curve.App; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); } //# sourceMappingURL=index.d.ts.map