import { Serializer } from '@metaplex-foundation/umi/serializers'; import { BatchedTokenInstruction, BatchedTokenInstructionArgs } from '../generated/types'; export type BatchTokenInstructionsInstructionData = { discriminator: number; instructions: Array; }; export type BatchTokenInstructionsInstructionDataArgs = { instructions: Array; }; /** * Serializes the data of the SPL Token batch instruction: a `u8` * discriminator followed by the batched instructions until the end * of the buffer. Each batched instruction has a variable size, which * Umi's remainder-sized `array` serializer does not support. */ export declare function getBatchTokenInstructionsInstructionDataSerializer(): Serializer;