import { AptosDataCache, AptosParserRepo, AptosLocalCache } from "@manahippo/move-to-ts"; import { U64 } from "@manahippo/move-to-ts"; import { TypeTag } from "@manahippo/move-to-ts"; import { OptionTransaction } from "@manahippo/move-to-ts"; import { HexString, AptosClient, AptosAccount, TxnBuilderTypes, Types } from "aptos"; export declare const packageName = "swap"; export declare const moduleAddress: HexString; export declare const moduleName = "beneficiary"; export declare const ERR_EMERGENCY: U64; export declare const ERR_NO_PERMISSIONS: U64; export declare function withdraw_(account: HexString, $c: AptosDataCache, $p: TypeTag[]): void; export declare function buildPayload_withdraw($p: TypeTag[], /* */ 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_withdraw($p: TypeTag[], /* */ isJSON?: boolean): TxnBuilderTypes.TransactionPayloadEntryFunction | Types.TransactionPayload_EntryFunctionPayload; withdraw(_account: AptosAccount, $p: TypeTag[], /* */ option?: OptionTransaction, _isJSON?: boolean): Promise; } //# sourceMappingURL=beneficiary.d.ts.map