import { Context } from '@metaplex-foundation/umi'; import { CollectionV1, AssetV1, UpdateV2InstructionDataArgs, updateV2 } from '../generated'; export type UpdateArgs = Omit[1], 'asset' | 'collection' | 'newName' | 'newUri'> & { asset: Pick; collection?: Pick; name?: UpdateV2InstructionDataArgs['newName']; uri?: UpdateV2InstructionDataArgs['newUri']; }; export declare const update: (context: Pick, { asset, collection, name, uri, ...args }: UpdateArgs) => import("@metaplex-foundation/umi").TransactionBuilder;