import { z } from 'zod'; export declare const EdgeAxisSchema: z.ZodEnum<{ db: "db"; memory: "memory"; visual: "visual"; render: "render"; state: "state"; network: "network"; backend: "backend"; performance: "performance"; lifecycle: "lifecycle"; ownership: "ownership"; caused: "caused"; async: "async"; data: "data"; }>; export type EdgeAxis = z.infer; export declare const TraceEdgeSchema: z.ZodObject<{ id: z.ZodString; from: z.ZodString; to: z.ZodString; axis: z.ZodEnum<{ db: "db"; memory: "memory"; visual: "visual"; render: "render"; state: "state"; network: "network"; backend: "backend"; performance: "performance"; lifecycle: "lifecycle"; ownership: "ownership"; caused: "caused"; async: "async"; data: "data"; }>; type: z.ZodString; timestamp: z.ZodNumber; attributes: z.ZodOptional>; }, z.core.$strip>; export type TraceEdge = z.infer;