/** * Parses dotenv file content and returns an object with key-value pairs. * * @param content - The raw dotenv file content. * @returns A record object representing parsed environment variables. * * Lines that are empty or start with `#` (comments) are ignored. * Multi-line or quoted values are not supported. */ export declare function parseEnvContent(content: string): Record; //# sourceMappingURL=parseEnv.d.ts.map