import { z } from 'zod'; export declare const denoFile: z.ZodObject<{ kind: z.ZodLiteral<"file">; content: z.ZodString; encoding: z.ZodEnum<{ "utf-8": "utf-8"; base64: "base64"; }>; }, z.core.$strip>; export type DenoFile = { kind: 'file'; content: string; encoding: 'utf-8' | 'base64'; }; //# sourceMappingURL=denoFile.generated.d.ts.map