/**
 * 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 DeprecatedMintPrintingTokensViaToken
 * @category generated
 */
export declare const DeprecatedMintPrintingTokensViaTokenStruct: beet.BeetArgsStruct<{
    instructionDiscriminator: number;
}>;
/**
 * Accounts required by the _DeprecatedMintPrintingTokensViaToken_ instruction
 *
 * @property [_writable_] destination Destination account
 * @property [_writable_] token Token account containing one time authorization token
 * @property [_writable_] oneTimePrintingAuthorizationMint One time authorization mint
 * @property [_writable_] printingMint Printing mint
 * @property [**signer**] burnAuthority Burn 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 DeprecatedMintPrintingTokensViaToken
 * @category generated
 */
export type DeprecatedMintPrintingTokensViaTokenInstructionAccounts = {
    destination: web3.PublicKey;
    token: web3.PublicKey;
    oneTimePrintingAuthorizationMint: web3.PublicKey;
    printingMint: web3.PublicKey;
    burnAuthority: web3.PublicKey;
    metadata: web3.PublicKey;
    masterEdition: web3.PublicKey;
    tokenProgram?: web3.PublicKey;
    rent?: web3.PublicKey;
};
export declare const deprecatedMintPrintingTokensViaTokenInstructionDiscriminator = 8;
/**
 * Creates a _DeprecatedMintPrintingTokensViaToken_ instruction.
 *
 * @param accounts that will be accessed while the instruction is processed
 * @category Instructions
 * @category DeprecatedMintPrintingTokensViaToken
 * @category generated
 */
export declare function createDeprecatedMintPrintingTokensViaTokenInstruction(accounts: DeprecatedMintPrintingTokensViaTokenInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;
//# sourceMappingURL=DeprecatedMintPrintingTokensViaToken.d.ts.map