import { Context } from '@metaplex-foundation/umi'; import { updateCollectionV1, UpdateCollectionV1InstructionDataArgs } from '../../generated'; export type UpdateCollectionArgs = Omit[1], 'newName' | 'newUri'> & { name?: UpdateCollectionV1InstructionDataArgs['newName']; uri?: UpdateCollectionV1InstructionDataArgs['newUri']; }; export declare const updateCollection: (context: Pick, { name, uri, ...args }: UpdateCollectionArgs) => import("@metaplex-foundation/umi").TransactionBuilder;