import { AptosClient } from "aptos"; import { AptosParserRepo, AptosLocalCache } from "@manahippo/move-to-ts"; import * as Beneficiary from './beneficiary'; import * as Controller from './controller'; import * as Event from './event'; import * as Implements from './implements'; import * as Init from './init'; import * as Interface from './interface'; import * as Math from './math'; export * as Beneficiary from './beneficiary'; export * as Controller from './controller'; export * as Event from './event'; export * as Implements from './implements'; export * as Init from './init'; export * as Interface from './interface'; export * as Math from './math'; export declare function loadParsers(repo: AptosParserRepo): void; export declare function getPackageRepo(): AptosParserRepo; export declare type AppType = { client: AptosClient; repo: AptosParserRepo; cache: AptosLocalCache; }; export declare class App { client: AptosClient; repo: AptosParserRepo; cache: AptosLocalCache; beneficiary: Beneficiary.App; controller: Controller.App; event: Event.App; implements: Implements.App; init: Init.App; interface: Interface.App; math: Math.App; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); } //# sourceMappingURL=index.d.ts.map