import { TraceLog } from "@cloudflare/workers-types"; import { zod } from "../../zod"; export declare namespace Configuration { const type: zod.ZodObject<{ realm: zod.ZodEnum<{ test: "test"; uk: "uk"; eea: "eea"; }>; collection: zod.ZodString; resource: zod.ZodOptional; requireEntries: zod.ZodOptional; }, zod.z.core.$strip>; function fromTraceLog(trace: TraceLog | undefined): Configuration | undefined; } export type Configuration = zod.infer;