import type { EventData, JSONEventType } from "../types"; export type JSONEventOptions = { /** * The id to this event. By default, the id will be generated. */ id?: string; } & E; export declare const jsonEvent: ({ type, data, metadata, id, }: JSONEventOptions) => EventData;