/**
 * 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 CloseEscrowAccount
 * @category generated
 */
export declare const CloseEscrowAccountStruct: beet.BeetArgsStruct<{
    instructionDiscriminator: number;
}>;
/**
 * Accounts required by the _CloseEscrowAccount_ instruction
 *
 * @property [_writable_] escrow Escrow account
 * @property [_writable_] metadata Metadata account
 * @property [] mint Mint account
 * @property [] tokenAccount Token account
 * @property [] edition Edition account
 * @property [_writable_, **signer**] payer Wallet paying for the transaction and new account
 * @property [] sysvarInstructions Instructions sysvar account
 * @category Instructions
 * @category CloseEscrowAccount
 * @category generated
 */
export type CloseEscrowAccountInstructionAccounts = {
    escrow: web3.PublicKey;
    metadata: web3.PublicKey;
    mint: web3.PublicKey;
    tokenAccount: web3.PublicKey;
    edition: web3.PublicKey;
    payer: web3.PublicKey;
    systemProgram?: web3.PublicKey;
    sysvarInstructions: web3.PublicKey;
};
export declare const closeEscrowAccountInstructionDiscriminator = 39;
/**
 * Creates a _CloseEscrowAccount_ instruction.
 *
 * @param accounts that will be accessed while the instruction is processed
 * @category Instructions
 * @category CloseEscrowAccount
 * @category generated
 */
export declare function createCloseEscrowAccountInstruction(accounts: CloseEscrowAccountInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;
//# sourceMappingURL=CloseEscrowAccount.d.ts.map