/** * 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 CollectInstructionAccounts = { /** Authority to collect fees */ authority?: Signer; /** The account to transfer collected fees to */ recipient: PublicKey | Pda; }; export type CollectInstructionData = { discriminator: number; }; export type CollectInstructionDataArgs = {}; export declare function getCollectInstructionDataSerializer(): Serializer; export declare function collect(context: Pick, input: CollectInstructionAccounts): TransactionBuilder;