import * as z from "zod/v3"; import { SDKOptions } from "./config.js"; export interface Env { LOQATE_API_KEY?: string | undefined; /** * Sets the source parameter for all supported operations */ LOQATE_SOURCE?: string | undefined; LOQATE_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