export interface ErrorContextOptions {
    message?: string;
    hint?: string;
    sqlSnippet?: string;
    column?: number;
    indentPrefix?: string;
}
/**
 * Renders error context with gutter lines.
 * Shared between errorDisplay and resultsTable (watch mode).
 *
 * Format:
 *   | error message
 *   | SQL snippet
 *   |                    ^ caret
 */
export declare function renderErrorContext(options: ErrorContextOptions): void;
