/** * Low-level environment detection for the platform layer. * * Reads directly from process env vars (VERYFRONT_ENV, NODE_ENV) so that * bottom-layer and middle-layer modules can check the current environment * without importing from the config/ or build/ layers. * * @module platform/environment */ export type Environment = "development" | "production" | "test"; export declare function getEnvironment(): Environment; export declare function isDevelopment(): boolean; export declare function isProduction(): boolean; export declare function isTest(): boolean; //# sourceMappingURL=environment.d.ts.map