import { type PathLike } from "node:fs"; /** * Parse a `.env` file into a record. Returns `{}` when the file is absent (a `.env` is optional — the real environment * is the source of truth; see {@link file://./index.ts}). Values are strings, as written. */ export declare function loadEnvFile(envFilePath: PathLike): T; //# sourceMappingURL=load.d.ts.map