/**
 * Copies the bundled runtime into the launch project when the original app lives under `node_modules`.
 *
 * @private internal utility of `buildAgentsServer`
 */
export declare function synchronizeMaterializedAgentsServerRuntime(options: {
    readonly materializedRuntimeRootPath: string;
    readonly nodeModulesPath: string;
    readonly sourceAppPath: string;
    readonly sourceRuntimeRootPath: string;
}): Promise<void>;
