export declare class Component { id: string; uiType: string; onClickEvent?: Event; data?: object; position?: string; } export declare class Connection { id: string; stepTo: string; forceSync?: boolean; } export declare class Event { type: string; } export declare class ConnectionEvent extends Event { type: string; conectionId: string; constructor(connectionId: string); } export declare class SetOutputEvent extends Event { type: string; key: string; value: any; constructor(key: string, value: any); } export declare class WebRedirectionEvent extends Event { type: string; path: string; constructor(path: string); }