import * as z from "zod"; export interface Env { UAPI_MCP_UAPI_ADMIN_BEARER_AUTH?: string | undefined; UAPI_MCP_UAPIKEY?: string | undefined; UAPI_MCP_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