/** * Error formatting for user-facing CLI output. * * Renders IgnitionError instances with contextual details (hostname, * file path) and actionable suggestions. */ import { IgnitionError } from "../core/errors.ts"; /** * Format an IgnitionError for display in the terminal. * * Includes the error tag, message, relevant context fields, * and a suggestion hint when available. */ export declare function formatError(err: IgnitionError): string; //# sourceMappingURL=errors.d.ts.map