import { FourSlashData } from './fourSlashTypes'; /** * Parse given fourslash markup code and return content with markup/range data * * @param basePath this will be combined with given `fileName` to form filepath to this content * @param contents content with fourslash markups. * @param fileName this will be a default filename for the first no named content in `contents`. * if content is marked with `@filename`, that will override this given `filename` */ export declare function parseTestData(basePath: string, contents: string, fileName: string): FourSlashData;