/**
 * This code was GENERATED using the solita package.
 * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
 *
 * See: https://github.com/metaplex-foundation/solita
 */
import * as beet from '@metaplex-foundation/beet';
import * as web3 from '@solana/web3.js';
/**
 * @category Instructions
 * @category RevokeCollectionAuthority
 * @category generated
 */
export declare const RevokeCollectionAuthorityStruct: beet.BeetArgsStruct<{
    instructionDiscriminator: number;
}>;
/**
 * Accounts required by the _RevokeCollectionAuthority_ instruction
 *
 * @property [_writable_] collectionAuthorityRecord Collection Authority Record PDA
 * @property [_writable_] delegateAuthority Delegated Collection Authority
 * @property [_writable_, **signer**] revokeAuthority Update Authority, or Delegated Authority, of Collection NFT
 * @property [] metadata Metadata account
 * @property [] mint Mint of Metadata
 * @category Instructions
 * @category RevokeCollectionAuthority
 * @category generated
 */
export type RevokeCollectionAuthorityInstructionAccounts = {
    collectionAuthorityRecord: web3.PublicKey;
    delegateAuthority: web3.PublicKey;
    revokeAuthority: web3.PublicKey;
    metadata: web3.PublicKey;
    mint: web3.PublicKey;
};
export declare const revokeCollectionAuthorityInstructionDiscriminator = 24;
/**
 * Creates a _RevokeCollectionAuthority_ instruction.
 *
 * @param accounts that will be accessed while the instruction is processed
 * @category Instructions
 * @category RevokeCollectionAuthority
 * @category generated
 */
export declare function createRevokeCollectionAuthorityInstruction(accounts: RevokeCollectionAuthorityInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;
//# sourceMappingURL=RevokeCollectionAuthority.d.ts.map