import type { RemoteServerOptions } from '../types/RemoteServerOptions';
import type { StartRemoteServerConfiguration } from './StartRemoteServerConfiguration';
/**
 * Resolves option defaults once so the rest of the remote-server flow can work with a single shape.
 *
 * @private internal utility of `startRemoteServer`
 */
export declare function resolveStartRemoteServerConfiguration<TCustomOptions>(startOptions: RemoteServerOptions<TCustomOptions>): StartRemoteServerConfiguration<TCustomOptions>;
