/**
 * 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 { PrintArgs } from '../types/PrintArgs';
/**
 * @category Instructions
 * @category Print
 * @category generated
 */
export type PrintInstructionArgs = {
    printArgs: PrintArgs;
};
/**
 * @category Instructions
 * @category Print
 * @category generated
 */
export declare const PrintStruct: beet.FixableBeetArgsStruct<PrintInstructionArgs & {
    instructionDiscriminator: number;
}>;
/**
 * Accounts required by the _Print_ instruction
 *
 * @property [_writable_] editionMetadata New Metadata key (pda of ['metadata', program id, mint id])
 * @property [_writable_] edition New Edition (pda of ['metadata', program id, mint id, 'edition'])
 * @property [_writable_] editionMint Mint of new token - THIS WILL TRANSFER AUTHORITY AWAY FROM THIS KEY
 * @property [] editionTokenAccountOwner Owner of the token account of new token
 * @property [_writable_] editionTokenAccount Token account of new token
 * @property [**signer**] editionMintAuthority Mint authority of new mint
 * @property [_writable_] editionTokenRecord (optional) Token record account
 * @property [_writable_] masterEdition Master Record Edition V2 (pda of ['metadata', program id, master metadata mint id, 'edition'])
 * @property [_writable_] editionMarkerPda Edition pda to mark creation - will be checked for pre-existence. (pda of ['metadata', program id, master metadata mint id, 'edition', edition_number]) where edition_number is NOT the edition number you pass in args but actually edition_number = floor(edition/EDITION_MARKER_BIT_SIZE).
 * @property [_writable_, **signer**] payer payer
 * @property [**signer**] masterTokenAccountOwner owner of token account containing master token
 * @property [] masterTokenAccount token account containing token from master metadata mint
 * @property [] masterMetadata Master record metadata account
 * @property [] updateAuthority The update authority of the master edition.
 * @property [] splTokenProgram Token program
 * @property [] splAtaProgram SPL Associated Token Account program
 * @property [] sysvarInstructions Instructions sysvar account
 * @category Instructions
 * @category Print
 * @category generated
 */
export type PrintInstructionAccounts = {
    editionMetadata: web3.PublicKey;
    edition: web3.PublicKey;
    editionMint: web3.PublicKey;
    editionTokenAccountOwner: web3.PublicKey;
    editionTokenAccount: web3.PublicKey;
    editionMintAuthority: web3.PublicKey;
    editionTokenRecord?: web3.PublicKey;
    masterEdition: web3.PublicKey;
    editionMarkerPda: web3.PublicKey;
    payer: web3.PublicKey;
    masterTokenAccountOwner: web3.PublicKey;
    masterTokenAccount: web3.PublicKey;
    masterMetadata: web3.PublicKey;
    updateAuthority: web3.PublicKey;
    splTokenProgram: web3.PublicKey;
    splAtaProgram: web3.PublicKey;
    sysvarInstructions: web3.PublicKey;
    systemProgram?: web3.PublicKey;
};
export declare const printInstructionDiscriminator = 55;
/**
 * Creates a _Print_ instruction.
 *
 * Optional accounts that are not provided default to the program ID since
 * this was indicated in the IDL from which this instruction was generated.
 *
 * @param accounts that will be accessed while the instruction is processed
 * @param args to provide as instruction data to the program
 *
 * @category Instructions
 * @category Print
 * @category generated
 */
export declare function createPrintInstruction(accounts: PrintInstructionAccounts, args: PrintInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;
//# sourceMappingURL=Print.d.ts.map