import { InvocationEvent } from "../index.js";
export declare class InvocationEventImpl implements InvocationEvent<unknown> {
data: unknown;
dataContentType?: string;
id: string;
time?: string;
constructor(data: unknown, dataContentType: string, id: string, time: string);
}