import type * as mod from "./index.js"; import type * as payloads from "./payloads.js"; /** Mints coins from the mint_wrapper on behalf of the mint_wrapper's authority. */ export declare const mint: ({ args, typeArgs }: mod.MintArgs) => payloads.Mint; /** Accepts the minter if possible. */ export declare const accept_minter: ({ args, typeArgs, }: mod.AcceptMinterArgs) => payloads.AcceptMinter; /** Accepts the owner. */ export declare const accept_owner: ({ typeArgs, }: mod.AcceptOwnerArgs) => payloads.AcceptOwner; /** * Creates a new coin and mint_wrapper. * The given account also becomes the mint_wrapper's base. */ export declare const create_with_coin: ({ args, typeArgs, }: mod.CreateWithCoinArgs) => payloads.CreateWithCoin; /** Creates a new minter with the given allowance, offering it. */ export declare const offer_minter: ({ args, typeArgs, }: mod.OfferMinterArgs) => payloads.OfferMinter; /** Offers the owner. */ export declare const offer_owner: ({ args, typeArgs, }: mod.OfferOwnerArgs) => payloads.OfferOwner; //# sourceMappingURL=entry.d.ts.map