import { Diagnostic, Context } from './interfaces'; /** * Get a list of TypeScript diagnostics within the current context. * * @param context - The context object. * @returns List of diagnostics */ export declare const getDiagnostics: (context: Context) => Diagnostic[];