/**
 * 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';
import { TransferOutOfEscrowArgs } from '../types/TransferOutOfEscrowArgs';
/**
 * @category Instructions
 * @category TransferOutOfEscrow
 * @category generated
 */
export type TransferOutOfEscrowInstructionArgs = {
    transferOutOfEscrowArgs: TransferOutOfEscrowArgs;
};
/**
 * @category Instructions
 * @category TransferOutOfEscrow
 * @category generated
 */
export declare const TransferOutOfEscrowStruct: beet.BeetArgsStruct<TransferOutOfEscrowInstructionArgs & {
    instructionDiscriminator: number;
}>;
/**
 * Accounts required by the _TransferOutOfEscrow_ instruction
 *
 * @property [] escrow Escrow account
 * @property [_writable_] metadata Metadata account
 * @property [_writable_, **signer**] payer Wallet paying for the transaction and new account
 * @property [] attributeMint Mint account for the new attribute
 * @property [_writable_] attributeSrc Token account source for the new attribute
 * @property [_writable_] attributeDst Token account, owned by TM, destination for the new attribute
 * @property [] escrowMint Mint account that the escrow is attached
 * @property [] escrowAccount Token account that holds the token the escrow is attached to
 * @property [] sysvarInstructions Instructions sysvar account
 * @property [**signer**] authority (optional) Authority/creator of the escrow account
 * @category Instructions
 * @category TransferOutOfEscrow
 * @category generated
 */
export type TransferOutOfEscrowInstructionAccounts = {
    escrow: web3.PublicKey;
    metadata: web3.PublicKey;
    payer: web3.PublicKey;
    attributeMint: web3.PublicKey;
    attributeSrc: web3.PublicKey;
    attributeDst: web3.PublicKey;
    escrowMint: web3.PublicKey;
    escrowAccount: web3.PublicKey;
    systemProgram?: web3.PublicKey;
    ataProgram?: web3.PublicKey;
    tokenProgram?: web3.PublicKey;
    sysvarInstructions: web3.PublicKey;
    authority?: web3.PublicKey;
};
export declare const transferOutOfEscrowInstructionDiscriminator = 40;
/**
 * Creates a _TransferOutOfEscrow_ instruction.
 *
 * Optional accounts that are not provided will be omitted from the accounts
 * array passed with the instruction.
 * An optional account that is set cannot follow an optional account that is unset.
 * Otherwise an Error is raised.
 *
 * @param accounts that will be accessed while the instruction is processed
 * @param args to provide as instruction data to the program
 *
 * @category Instructions
 * @category TransferOutOfEscrow
 * @category generated
 */
export declare function createTransferOutOfEscrowInstruction(accounts: TransferOutOfEscrowInstructionAccounts, args: TransferOutOfEscrowInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;
//# sourceMappingURL=TransferOutOfEscrow.d.ts.map