import type { Diagnostic } from './interfaces'; export declare function printDiagnostics(diagnostics?: Diagnostic[]): void; export declare function printDiagnostic(diagnostic: Diagnostic): void; /** * Given a diagnostic, compute the range for the squiggly */ export declare function getDiagnosticSquigglyText(diagnostic: Diagnostic, line: string): string;