import * as z from "zod/v3"; export interface Env { CREEM_API_KEY?: string | undefined; CREEM_DEBUG?: boolean | undefined; } export declare const envSchema: z.ZodType; /** * Reads and validates environment variables. */ export declare function env(): Env; /** * Clears the cached env object. Useful for testing with a fresh environment. */ export declare function resetEnv(): void; //# sourceMappingURL=env.d.ts.map