import * as z from "zod"; import { SDKOptions } from "./config.js"; export interface Env { CLOUDINARY_API_KEY?: string | undefined; CLOUDINARY_API_SECRET?: string | undefined; CLOUDINARY_OAUTH2?: string | undefined; /** * Sets the cloud_name parameter for all supported operations */ CLOUDINARY_CLOUD_NAME?: string | undefined; CLOUDINARY_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; /** * Populates global parameters with environment variables. */ export declare function fillGlobals(options: SDKOptions): SDKOptions; //# sourceMappingURL=env.d.ts.map