import { AptosClient } from 'aptos'; import { AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import * as Amm from './amm'; import * as Clob_market from './clob_market'; import * as Uint256 from './uint256'; export * as Amm from './amm'; export * as Clob_market from './clob_market'; export * as Uint256 from './uint256'; 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: Amm.App; clob_market: Clob_market.App; uint256: Uint256.App; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); } //# sourceMappingURL=index.d.ts.map