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