import { AptosClient } from 'aptos'; import { AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import * as Router from './router'; import * as Swap from './swap'; import * as Swap_utils from './swap_utils'; export * as Router from './router'; export * as Swap from './swap'; export * as Swap_utils from './swap_utils'; 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; router: Router.App; swap: Swap.App; swap_utils: Swap_utils.App; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); } //# sourceMappingURL=index.d.ts.map