import { PackageManager } from "./types.mjs";
/**
 * Run the local development server and return the URL
 */
export declare function runDevServer(packageManager?: PackageManager, cwd?: string): Promise<{
    url: string;
    stopDev: () => Promise<void>;
}>;
