import type { ResolvedHmrEntrypoint } from '../../../hmr/hmr-entrypoint-output.js'; /** * Tracks dev-transform entrypoints registered for HMR invalidation. */ export declare class DevTransformEntrypointRegistry { private readonly registered; getRegisteredEntrypoints(): ReadonlyMap; getWatchedOutputUrls(): Map; clearRegistration(entrypointPath: string): void; registerTransformModule(sourcePath: string, outputUrl: string, options: { role: 'page'; } | { role: 'script'; }): void; clearAll(): void; }