import { ScriptLang } from "@marko/language-tools"; import ts from "typescript/lib/tsserverlibrary"; import type { Plugin } from "../types"; export interface TSProject { rootDir: string; host: ts.LanguageServiceHost; service: ts.LanguageService; markoScriptLang: ScriptLang; } declare const ScriptService: Partial; export declare function getTSProject(docFsPath: string): TSProject; export { ScriptService as default };