import ts from 'typescript'; import { CompilerHost } from './types'; export declare const getSemanticDiagnostics: ({ filePath, host, languageService, }: { readonly filePath: string; readonly host: CompilerHost; readonly languageService: ts.LanguageService; }) => readonly ts.Diagnostic[];