/** * Node-side registry tracking which file paths are mocked for a given test ID. * Consulted by the Vite plugin's load hook to decide whether to serve a synthetic module. */ declare class MockRegistry { #private; register(testId: string, path: string): void; isRegistered(testId: string, path: string): boolean; clear(testId: string): void; } export declare const registry: MockRegistry; export {};