/** * 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 RemoveGroupsFromGroupV1InstructionAccounts = { /** The address of the parent group to modify */ parentGroup: PublicKey | Pda; /** The account paying for storage fees */ payer?: Signer; /** The update authority of the parent and child groups */ authority?: Signer; /** The system program */ systemProgram?: PublicKey | Pda; }; export type RemoveGroupsFromGroupV1InstructionData = { discriminator: number; groups: Array; }; export type RemoveGroupsFromGroupV1InstructionDataArgs = { groups: Array; }; export declare function getRemoveGroupsFromGroupV1InstructionDataSerializer(): Serializer; export type RemoveGroupsFromGroupV1InstructionArgs = RemoveGroupsFromGroupV1InstructionDataArgs; export declare function removeGroupsFromGroupV1(context: Pick, input: RemoveGroupsFromGroupV1InstructionAccounts & RemoveGroupsFromGroupV1InstructionArgs): TransactionBuilder;