///
import { IMessage, IBus } from "@tandem/mesh";
import { ChildProcess } from "child_process";
export declare class SpawnWorkerRequest implements IMessage {
readonly env: any;
static readonly SPAWN_WORKER: string;
readonly type: string;
constructor(env: any);
}
export declare class SpawnedWorkerMessage implements IMessage {
readonly bus: IBus;
readonly process: ChildProcess;
static readonly SPAWNED_WORKER: string;
readonly type: string;
constructor(bus: IBus, process: ChildProcess);
}