import { Context } from '@metaplex-foundation/umi'; import { revokeCollectionPluginAuthorityV1, PluginType } from '../../generated'; export type RevokeCollectionPluginAuthorityArgs = Omit[1], 'pluginType'> & { plugin: { type: keyof typeof PluginType; }; }; export declare const revokeCollectionPluginAuthority: (context: Pick, { plugin, ...args }: RevokeCollectionPluginAuthorityArgs) => import("@metaplex-foundation/umi").TransactionBuilder;