/** * 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 CloseGroupV1InstructionAccounts = { /** The address of the group to close */ group: PublicKey | Pda; /** The account receiving reclaimed lamports */ payer?: Signer; /** The update authority of the group */ authority?: Signer; }; export type CloseGroupV1InstructionData = { discriminator: number; }; export type CloseGroupV1InstructionDataArgs = {}; export declare function getCloseGroupV1InstructionDataSerializer(): Serializer; export declare function closeGroupV1(context: Pick, input: CloseGroupV1InstructionAccounts): TransactionBuilder;