import { type AppError } from '../types/errors.js'; /** * Human-readable one-line rendering of an application error, for display in the * TUI and for log lines. Each error type carries different fields, so the text * is composed per type via the `_tag` discriminator. */ export declare function formatErrorMessage(error: AppError): string;