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