/** * 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 RemoveAssetsFromGroupV1InstructionAccounts = { /** The address of the group to modify */ group: PublicKey | Pda; /** The account paying for storage fees */ payer?: Signer; /** The group update authority and asset update authority or delegate */ authority?: Signer; /** The system program */ systemProgram?: PublicKey | Pda; }; export type RemoveAssetsFromGroupV1InstructionData = { discriminator: number; assets: Array; }; export type RemoveAssetsFromGroupV1InstructionDataArgs = { assets: Array; }; export declare function getRemoveAssetsFromGroupV1InstructionDataSerializer(): Serializer; export type RemoveAssetsFromGroupV1InstructionArgs = RemoveAssetsFromGroupV1InstructionDataArgs; export declare function removeAssetsFromGroupV1(context: Pick, input: RemoveAssetsFromGroupV1InstructionAccounts & RemoveAssetsFromGroupV1InstructionArgs): TransactionBuilder;