import * as ts from "typescript"; /** * Parse a TypeScript file into an AST * @param path - Absolute or relative path to the TypeScript file * @returns Parsed TypeScript SourceFile * @throws Error if the file cannot be read or parsed */ export declare function parseFile(path: string): ts.SourceFile; //# sourceMappingURL=parser.d.ts.map