import http from 'node:http';
import { type HooksState } from './hooks';
import type { ProxyOptions } from './types';
export declare const waitForServerReady: (server: http.Server) => Promise<http.Server>;
export declare const createProxy: (config: ProxyOptions, stateSetupPath: string, messageTransportPath: string, hooksState: HooksState) => http.Server;
