import * as vfs from '../vfs/filesystem'; import { FourSlashData, Marker } from './fourSlashTypes'; export declare function createVfsInfoFromFourSlashData(projectRoot: string, testData: FourSlashData): { files: vfs.FileSet; sourceFileNames: string[]; projectRoot: string; ignoreCase: boolean; rawConfigJson: string; }; export declare function getMarkerName(testData: FourSlashData, markerToFind: Marker): string; export declare function getMarkerByName(testData: FourSlashData, markerName: string): Marker; export declare function getMarkerNames(testData: FourSlashData): string[]; export declare function getRangeByMarkerName(testData: FourSlashData, markerName: string): import("./fourSlashTypes").Range | undefined;