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