import { Request } from '../client/Client'; export declare class WorkerClient { id: string; debug: (msg: string, ...args: any[]) => void; constructor(id: string); init(): void; processRequest(m: Request): any | Promise; dispose(): void | Promise; }