/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; /** * @category Instructions * @category Close * @category generated */ export declare const CloseStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number; }>; /** * Accounts required by the _Close_ instruction * * @property [] mintManager * @property [_writable_] mint * @property [_writable_] tokenAccount * @property [**signer**] owner * @category Instructions * @category Close * @category generated */ export declare type CloseInstructionAccounts = { mintManager: web3.PublicKey; mint: web3.PublicKey; tokenAccount: web3.PublicKey; owner: web3.PublicKey; tokenProgram?: web3.PublicKey; }; export declare const closeInstructionDiscriminator = 10; /** * Creates a _Close_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category Close * @category generated */ export declare function createCloseInstruction(accounts: CloseInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=Close.d.ts.map