/** * Correlation Extension Group (org.peacprotocol/correlation) * * Records workflow correlation and traceability metadata. * OpenTelemetry-compatible trace and span IDs. * Shipped in v0.12.0-preview.1. */ import { z } from 'zod'; export declare const CORRELATION_EXTENSION_KEY: "org.peacprotocol/correlation"; export declare const CorrelationExtensionSchema: z.ZodObject<{ trace_id: z.ZodOptional; span_id: z.ZodOptional; workflow_id: z.ZodOptional; parent_jti: z.ZodOptional; depends_on: z.ZodOptional>; }, z.core.$strict>; export type CorrelationExtension = z.infer; //# sourceMappingURL=correlation.d.ts.map