import { Context } from '@metaplex-foundation/umi'; import { removePluginV1, PluginType } from '../generated'; import { ExternalPluginAdapterKey } from '../plugins/externalPluginAdapterKey'; export type RemovePluginArgsPlugin = { type: Exclude; } | ExternalPluginAdapterKey; export type RemovePluginArgs = Omit[1], 'pluginType'> & { plugin: RemovePluginArgsPlugin; }; export declare const removePlugin: (context: Pick, { plugin, ...args }: RemovePluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder;