import type { TypeScriptLanguageHost, VueCompilerOptions } from '@vue/language-core'; import type ts from 'typescript/lib/tsserverlibrary'; import type { MetaCheckerOptions } from '../types'; export declare function createVueLanguageService(ts: typeof import('typescript/lib/tsserverlibrary'), _host: TypeScriptLanguageHost, checkerOptions: MetaCheckerOptions, vueCompilerOptions: VueCompilerOptions, globalComponentName: string): { core: import("@vue/language-core").LanguageContext; tsLs: ts.LanguageService; host: TypeScriptLanguageHost; }; export type VueLanguageService = ReturnType;