import { TraceLog } from "@cloudflare/workers-types"; import { zod } from "../../zod"; import type { Log } from "../index"; export declare namespace Entry { const type: zod.ZodObject<{ message: zod.ZodString; resource: zod.ZodOptional; data: zod.ZodOptional; }, zod.z.core.$strip>; function fromEventLogs(trace: TraceLog): { entry: Log.Entry; resource: Log["resource"]; } | undefined; } export type Entry = zod.infer;