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