export { DEV_TRANSFORM_URL_PREFIX } from '../../hmr/hmr-asset-paths.js'; /** * Maps a source entrypoint to the browser URL served by the dev transform server. */ export declare function resolveDevTransformModuleUrl(srcDir: string, entrypointPath: string): string; /** * Resolves a dev-transform browser URL back to an on-disk page entrypoint. * * @remarks * Client-side navigation can request page modules that were not registered during * the current SSR response. Lazy resolution keeps those URLs materializable on demand. */ export declare function resolveDevTransformModuleSourcePath(srcDir: string, moduleUrl: string): string | undefined;