/** * 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 RevokeUseAuthorityInstructionAccounts = { /** Use Authority Record PDA */ useAuthorityRecord: PublicKey | Pda; /** Owner */ owner: Signer; /** A Use Authority */ user: PublicKey | Pda; /** Owned Token Account Of Mint */ ownerTokenAccount: PublicKey | Pda; /** Mint of Metadata */ mint: PublicKey | Pda; /** Metadata account */ metadata?: PublicKey | Pda; /** Token program */ tokenProgram?: PublicKey | Pda; /** System program */ systemProgram?: PublicKey | Pda; /** Rent info */ rent?: PublicKey | Pda; }; export type RevokeUseAuthorityInstructionData = { discriminator: number; }; export type RevokeUseAuthorityInstructionDataArgs = {}; export declare function getRevokeUseAuthorityInstructionDataSerializer(): Serializer; export declare function revokeUseAuthority(context: Pick, input: RevokeUseAuthorityInstructionAccounts): TransactionBuilder;