import { Node } from '../../../libraries/typescript/lib/typescript';
import { Diagnostic } from '../interfaces';
declare const _default: (node: Node, message: string, severity?: 'error' | 'warning') => Diagnostic;
/**
 * Create a diagnostic from the given `node`, `message` and optional `severity`.
 *
 * @param node - The TypeScript Node where this diagnostic occurs.
 * @param message - Message of the diagnostic.
 * @param severity - Severity of the diagnostic.
 */
export default _default;
