import * as z from "zod/v3"; export interface Env { GUSTOEMBEDDED_COMPANY_ACCESS_AUTH?: string | undefined; GUSTOEMBEDDED_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