import * as ts from 'typescript'; export declare class MockModule implements ts.ModuleResolutionHost { private mockFileName; private mockContent; constructor(mockFileName: string, mockContent: string); fileExists(fileName: string): boolean; readFile(fileName: string): string; }