import WebSocket from 'ws'; /** * this is for log streaming, this is going to be used by the basic job poster * just to show that clients logs, both from the node and the container */ export declare function wssLogRoute(ws: WebSocket, _: string, { jobAddress }: { jobAddress: string; }): Promise; export declare function wssTaskManagerLogRoute(ws: WebSocket, _: string, { jobAddress, group, opId, type, }: { jobAddress: string; group?: string; opId?: string; type?: string; }): void;