import type * as mod from "./index.js"; import type * as payloads from "./payloads.js"; /** Withdraw an `amount` of coin `CoinType` from `account` and burn it. */ export declare const burn: ({ args, typeArgs }: mod.BurnArgs) => payloads.Burn; /** * Initialize new coin `CoinType` in Aptos Blockchain. * Mint and Burn Capabilities will be stored under `account` in `Capabilities` resource. */ export declare const initialize: ({ args, typeArgs, }: mod.InitializeArgs) => payloads.Initialize; /** Create new coins `CoinType` and deposit them into dst_addr's account. */ export declare const mint: ({ args, typeArgs }: mod.MintArgs) => payloads.Mint; /** * Creating a resource that stores balance of `CoinType` on user's account, withdraw and deposit event handlers. * Required if user wants to start accepting deposits of `CoinType` in his account. */ export declare const register: ({ typeArgs, }: mod.RegisterArgs) => payloads.Register; //# sourceMappingURL=entry.d.ts.map