import { AptosClient } from 'aptos'; import { AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import * as Math from './math'; import * as Piece_swap from './piece_swap'; import * as Piece_swap_math from './piece_swap_math'; import * as Ss3swapAbel from './ss3swapAbel'; import * as Ssswap from './ssswap'; import * as Ssswap2 from './ssswap2'; export * as Math from './math'; export * as Piece_swap from './piece_swap'; export * as Piece_swap_math from './piece_swap_math'; export * as Ss3swapAbel from './ss3swapAbel'; export * as Ssswap from './ssswap'; export * as Ssswap2 from './ssswap2'; 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; math: Math.App; piece_swap: Piece_swap.App; piece_swap_math: Piece_swap_math.App; ss3swapAbel: Ss3swapAbel.App; ssswap: Ssswap.App; ssswap2: Ssswap2.App; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); } //# sourceMappingURL=index.d.ts.map