/** * LLM response formatting utilities for Sentry data. * * Converts Sentry API responses into structured markdown format optimized * for LLM consumption. Handles stacktraces, event details, issue summaries, * and contextual information with consistent formatting patterns. */ import type { z } from "zod"; import type { EventSchema } from "../schema.js"; export type Event = z.infer; /** * Formats a Sentry event into a structured markdown output. * Includes error messages, stack traces, request info, and contextual data. * * @param event - The Sentry event to format * @returns Formatted markdown string */ export declare function formatEventOutput(event: Event): string;