/// import type { BinaryEventType, EventData } from "../types"; export type BinaryEventOptions = E & { /** * The id to this event. By default, the id will be generated. */ id?: string; /** * The binary data of the event. */ data: Uint8Array | Buffer; }; export declare const binaryEvent: ({ type, data, metadata, id, }: BinaryEventOptions) => EventData;