/** * 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 RemoveCollectionsFromGroupV1InstructionAccounts = { /** The address of the group to modify */ group: PublicKey | Pda; /** The account paying for storage fees */ payer?: Signer; /** The group update authority and collection update authority or delegate */ authority?: Signer; /** The system program */ systemProgram?: PublicKey | Pda; }; export type RemoveCollectionsFromGroupV1InstructionData = { discriminator: number; collections: Array; }; export type RemoveCollectionsFromGroupV1InstructionDataArgs = { collections: Array; }; export declare function getRemoveCollectionsFromGroupV1InstructionDataSerializer(): Serializer; export type RemoveCollectionsFromGroupV1InstructionArgs = RemoveCollectionsFromGroupV1InstructionDataArgs; export declare function removeCollectionsFromGroupV1(context: Pick, input: RemoveCollectionsFromGroupV1InstructionAccounts & RemoveCollectionsFromGroupV1InstructionArgs): TransactionBuilder;