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