/** * .env file parser shared between the SDK (syncEnv) and the CLI (--sync stdin). * * Kept as a standalone exported function (not a class method) so both the * SDK's ApplicationsResource and the CLI's stdin sync handler can use the * same implementation without coupling to either. * * @module */ /** * Parses .env-style content into a Map. * * Handles: * - Comments (lines starting with `#`) * - Empty lines (skipped) * - Quoted values (`"value"` or `'value'`) * - Values containing `=` (only the first `=` is the separator) * - Lines without `=` (skipped — invalid) * * @param content - File contents in KEY=VALUE format * @returns Map of key → value (empty string for `KEY=` with no value) */ export declare function parseEnvContent(content: string): Map; //# sourceMappingURL=env-parser.d.ts.map