/// <reference types="node" />
import { Worker, WorkerOptions } from "worker_threads";
/**
 * @param options options to initalize a worker
 * @returns a fully created worker instance
 */
export declare function makeWorker(options: WorkerOptions): Worker;
