import { Context } from '@metaplex-foundation/umi'; import { updatePluginV1 } from '../generated'; import { AssetAllPluginArgsV2 } from '../plugins'; import { ExternalPluginAdapterUpdateInfoArgs } from '../plugins/externalPluginAdapters'; export type UpdatePluginArgsPlugin = AssetAllPluginArgsV2 | ExternalPluginAdapterUpdateInfoArgs; export type UpdatePluginArgs = Omit[1], 'plugin'> & { plugin: UpdatePluginArgsPlugin; }; export declare const updatePlugin: (context: Pick, { plugin, ...args }: UpdatePluginArgs) => import("@metaplex-foundation/umi").TransactionBuilder;