import { NodeEventType } from "./NodeEventType"; export declare class NodeEvent { tenant: string; payload: string; type: NodeEventType; constructor(tenant: string, payload: string, type: NodeEventType); }