/** * This code was AUTOGENERATED using the kinobi library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun kinobi to update it. * * @see https://github.com/metaplex-foundation/kinobi */ import { Context, Pda, PublicKey, Signer, TransactionBuilder } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; export type RecoverNestedAssociatedTokenInstructionAccounts = { nestedAssociatedAccountAddress: PublicKey | Pda; nestedTokenMintAddress: PublicKey | Pda; destinationAssociatedAccountAddress: PublicKey | Pda; ownerAssociatedAccountAddress: PublicKey | Pda; ownerTokenMintAddress: PublicKey | Pda; walletAddress: Signer; tokenProgram?: PublicKey | Pda; }; export type RecoverNestedAssociatedTokenInstructionData = { discriminator: number; }; export type RecoverNestedAssociatedTokenInstructionDataArgs = {}; export declare function getRecoverNestedAssociatedTokenInstructionDataSerializer(): Serializer; export declare function recoverNestedAssociatedToken(context: Pick, input: RecoverNestedAssociatedTokenInstructionAccounts): TransactionBuilder;