/** * 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 RemoveMemberInstructionAccounts = { authority?: Signer; member: PublicKey | Pda; fanout: PublicKey | Pda; membershipAccount: PublicKey | Pda; destination: PublicKey | Pda; }; export type RemoveMemberInstructionData = { discriminator: Array; }; export type RemoveMemberInstructionDataArgs = {}; /** @deprecated Use `getRemoveMemberInstructionDataSerializer()` without any argument instead. */ export declare function getRemoveMemberInstructionDataSerializer(_context: object): Serializer; export declare function getRemoveMemberInstructionDataSerializer(): Serializer; export declare function removeMember(context: Pick, input: RemoveMemberInstructionAccounts): TransactionBuilder;