/** * 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 declare type SetTreeDelegateInstructionAccounts = { treeConfig?: PublicKey | Pda; treeCreator?: Signer; newTreeDelegate: PublicKey | Pda; merkleTree: PublicKey | Pda; systemProgram?: PublicKey | Pda; }; export declare type SetTreeDelegateInstructionData = { discriminator: Array; }; export declare type SetTreeDelegateInstructionDataArgs = {}; export declare function getSetTreeDelegateInstructionDataSerializer(): Serializer; export declare function setTreeDelegate(context: Pick, input: SetTreeDelegateInstructionAccounts): TransactionBuilder;