import { AptosDataCache, AptosParserRepo, AptosLocalCache } from '@manahippo/move-to-ts'; import { U64 } from '@manahippo/move-to-ts'; import { OptionTransaction } from '@manahippo/move-to-ts'; import { HexString, AptosClient, AptosAccount, TxnBuilderTypes, Types } from 'aptos'; export declare const packageName = "Tortuga"; export declare const moduleAddress: HexString; export declare const moduleName = "stake_router"; export declare function stake_(_user: HexString, _amount: U64, $c: AptosDataCache): void; export declare function buildPayload_stake(_amount: U64, isJSON?: boolean): TxnBuilderTypes.TransactionPayloadEntryFunction | Types.TransactionPayload_EntryFunctionPayload; export declare function loadParsers(repo: AptosParserRepo): void; export declare class App { client: AptosClient; repo: AptosParserRepo; cache: AptosLocalCache; constructor(client: AptosClient, repo: AptosParserRepo, cache: AptosLocalCache); get moduleAddress(): HexString; get moduleName(): string; payload_stake(_amount: U64, isJSON?: boolean): TxnBuilderTypes.TransactionPayloadEntryFunction | Types.TransactionPayload_EntryFunctionPayload; stake(_account: AptosAccount, _amount: U64, option?: OptionTransaction, _isJSON?: boolean): Promise; } //# sourceMappingURL=stake_router.d.ts.map