/** * Node.js platform configuration * * Reads environment variables and local package.json to build a ServerConfig. * All process.env / path / fs access is isolated here. */ import type { ServerConfig } from '../../core/config.js'; export declare function getEnvNumber(key: string, defaultValue: number, min?: number, max?: number): number; /** * Create a ServerConfig by reading Node.js environment variables * and package.json version. */ export declare function createNodeConfig(): ServerConfig; //# sourceMappingURL=config.d.ts.map