import { type Env } from '../schemas/config.schema.js'; /** * Validates and loads environment variables using Zod schema. * * This function performs strict validation of all environment variables * at application startup. If validation fails, it prints detailed error * messages and exits the process. * * @returns Validated environment variables * @throws Exits process with code 1 if validation fails * * @example * const env = loadAndValidateEnv(); * console.log(env.LAGOON_GRAPHQL_URL); // Type-safe access */ export declare function loadAndValidateEnv(): Env; //# sourceMappingURL=config-loader.d.ts.map