import type { Envelope, EnvelopeItem } from "@sentry/core"; import type { z } from "zod"; import type { EventContainer } from "../../utils/index.js"; import type { ErrorEventSchema } from "../schema.js"; export declare function formatErrorEnvelope(container: EventContainer): string[]; export declare function processErrorEvent(event: any): z.infer; /** * Format an error event to markdown string */ export declare function formatError(payload: EnvelopeItem[1], _envelopeHeader: Envelope[0]): string[];