import { Context } from '@metaplex-foundation/umi'; import { WriteCollectionExternalPluginAdapterDataV1InstructionAccounts, WriteCollectionExternalPluginAdapterDataV1InstructionArgs } from '../../generated'; import { ExternalPluginAdapterKey } from '../../plugins'; export type WriteCollectionDataArgs = Omit & { key: ExternalPluginAdapterKey; }; export declare const writeCollectionData: (context: Pick, args: WriteCollectionDataArgs & WriteCollectionExternalPluginAdapterDataV1InstructionAccounts) => import("@metaplex-foundation/umi").TransactionBuilder;