import type { Socket } from 'socket.io';
import type { RemoteServerRuntime } from './RemoteServerRuntime';
/**
 * Registers the socket prepare-pipeline request handler.
 *
 * @private internal utility of `startRemoteServer`
 */
export declare function registerPreparePipelineSocketHandler<TCustomOptions>(runtime: RemoteServerRuntime<TCustomOptions>, socket: Socket): void;
