/**
 * 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 DeprecatedMintPrintingTokens
 * @category generated
 */
export declare const DeprecatedMintPrintingTokensStruct: beet.BeetArgsStruct<{
    instructionDiscriminator: number;
}>;
/**
 * Accounts required by the _DeprecatedMintPrintingTokens_ instruction
 *
 * @property [_writable_] destination Destination account
 * @property [_writable_] printingMint Printing mint
 * @property [**signer**] updateAuthority Update authority
 * @property [] metadata Metadata key (pda of ['metadata', program id, mint id])
 * @property [] masterEdition Master Edition V1 key (pda of ['metadata', program id, mint id, 'edition'])
 * @category Instructions
 * @category DeprecatedMintPrintingTokens
 * @category generated
 */
export type DeprecatedMintPrintingTokensInstructionAccounts = {
    destination: web3.PublicKey;
    printingMint: web3.PublicKey;
    updateAuthority: web3.PublicKey;
    metadata: web3.PublicKey;
    masterEdition: web3.PublicKey;
    tokenProgram?: web3.PublicKey;
    rent?: web3.PublicKey;
};
export declare const deprecatedMintPrintingTokensInstructionDiscriminator = 9;
/**
 * Creates a _DeprecatedMintPrintingTokens_ instruction.
 *
 * @param accounts that will be accessed while the instruction is processed
 * @category Instructions
 * @category DeprecatedMintPrintingTokens
 * @category generated
 */
export declare function createDeprecatedMintPrintingTokensInstruction(accounts: DeprecatedMintPrintingTokensInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;
//# sourceMappingURL=DeprecatedMintPrintingTokens.d.ts.map