/** * 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 AddGroupsToGroupV1InstructionAccounts = { /** 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 AddGroupsToGroupV1InstructionData = { discriminator: number; groups: Array; }; export type AddGroupsToGroupV1InstructionDataArgs = { groups: Array; }; export declare function getAddGroupsToGroupV1InstructionDataSerializer(): Serializer; export type AddGroupsToGroupV1InstructionArgs = AddGroupsToGroupV1InstructionDataArgs; export declare function addGroupsToGroupV1(context: Pick, input: AddGroupsToGroupV1InstructionAccounts & AddGroupsToGroupV1InstructionArgs): TransactionBuilder;