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