///
declare type System = import("typescript").System;
declare type CompilerOptions = import("typescript").CompilerOptions;
declare type CustomTransformers = import("typescript").CustomTransformers;
declare type LanguageServiceHost = import("typescript").LanguageServiceHost;
declare type CompilerHost = import("typescript").CompilerHost;
declare type SourceFile = import("typescript").SourceFile;
declare type TS = typeof import("typescript");
export interface VirtualTypeScriptEnvironment {
sys: System;
languageService: import("typescript").LanguageService;
getSourceFile: (fileName: string) => import("typescript").SourceFile | undefined;
createFile: (fileName: string, content: string) => void;
updateFile: (fileName: string, content: string, replaceTextSpan?: import("typescript").TextSpan) => void;
}
/**
* Makes a virtual copy of the TypeScript environment. This is the main API you want to be using with
* @typescript/vfs. A lot of the other exposed functions are used by this function to get set up.
*
* @param sys an object which conforms to the TS Sys (a shim over read/write access to the fs)
* @param rootFiles a list of files which are considered inside the project
* @param ts a copy pf the TypeScript module
* @param compilerOptions the options for this compiler run
* @param customTransformers custom transformers for this compiler run
*/
export declare function createVirtualTypeScriptEnvironment(sys: System, rootFiles: string[], ts: TS, compilerOptions?: CompilerOptions, customTransformers?: CustomTransformers): VirtualTypeScriptEnvironment;
/**
* Grab the list of lib files for a particular target, will return a bit more than necessary (by including
* the dom) but that's OK
*
* @param target The compiler settings target baseline
* @param ts A copy of the TypeScript module
*/
export declare const knownLibFilesForCompilerOptions: (compilerOptions: CompilerOptions, ts: TS) => string[];
/**
* Sets up a Map with lib contents by grabbing the necessary files from
* the local copy of typescript via the file system.
*/
export declare const createDefaultMapFromNodeModules: (compilerOptions: CompilerOptions, ts?: typeof import("typescript") | undefined) => Map;
/**
* Adds recursively files from the FS into the map based on the folder
*/
export declare const addAllFilesFromFolder: (map: Map, workingDir: string) => void;
/** Adds all files from node_modules/@types into the FS Map */
export declare const addFilesForTypesIntoFolder: (map: Map) => void;
/**
* Create a virtual FS Map with the lib files from a particular TypeScript
* version based on the target, Always includes dom ATM.
*
* @param options The compiler target, which dictates the libs to set up
* @param version the versions of TypeScript which are supported
* @param cache should the values be stored in local storage
* @param ts a copy of the typescript import
* @param lzstring an optional copy of the lz-string import
* @param fetcher an optional replacement for the global fetch function (tests mainly)
* @param storer an optional replacement for the localStorage global (tests mainly)
*/
export declare const createDefaultMapFromCDN: (options: CompilerOptions, version: string, cache: boolean, ts: TS, lzstring?: import("lz-string").LZStringStatic | undefined, fetcher?: typeof fetch | undefined, storer?: Storage | undefined) => Promise