/// <reference types="node" />
import type { ChildProcess } from 'node:child_process';
import type { Endpoint } from 'comlink';
export declare function nodeProcessEndpoint(options: {
    nodeProcess: ChildProcess | NodeJS.Process;
    messageChannel?: string;
}): Endpoint;
