/**
* Reads an .env file and converts it into a JavaScript object.
*
* @param {string} path - The path to the .env file.
* @return {Object} - An object with keys and values based on the .env file.
*/exportdefaultfunctionparseEnvFile(path: string): any;
export { parseEnvFile };