import type { VirtualTypeScriptEnvironment } from "@typescript/vfs"; /** * Lower-level interface to get semantic and syntactic * diagnostics from the TypeScript environment. * * This is used by tsLinter and tsLinterWorker, * but you can use it directly to power other UI. */ export declare function getLints({ env, path, }: { env: VirtualTypeScriptEnvironment; path: string; }): import("@codemirror/lint").Diagnostic[]; //# sourceMappingURL=getLints.d.ts.map