import { StartOptions } from './types';
/**
 * String expected by the hot reloading service (cli: start) for identifying a server restart.
 *
 * @privateRemarks if you change this, don't forget to also change the variable of same name in the module "core".
 */
export declare const hotReloadingString = "__[HOT RELOADING: SERVER_STARTED]__";
export declare function startServer({ hotReloadingDisabled, hotReloadingPort, entrypoint }: StartOptions): Promise<void>;
