import { z } from "zod"; export declare const DataFileEnvelopeSchema: z.ZodObject<{ $schema: z.ZodOptional; version: z.ZodLiteral<"1.0">; scope: z.ZodString; schemaId: z.ZodOptional; collectedAt: z.ZodString; data: z.ZodRecord; }, z.core.$strip>; export type DataFileEnvelope = z.infer; export declare function createDataFileEnvelope(scope: string, collectedAt: string, data: Record, schemaUrl?: string, schemaId?: string): DataFileEnvelope; export declare const IngestResponseSchema: z.ZodObject<{ scope: z.ZodString; collectedAt: z.ZodString; status: z.ZodEnum<{ stored: "stored"; syncing: "syncing"; }>; }, z.core.$strip>; export type IngestResponse = z.infer;