export interface EnvLine { key: string; value: string; originalLine: string; isComment: boolean; isEmpty: boolean; } /** * Parse .env file content into structured lines. * Handles comments, blank lines, quoted values, and `export` prefix. */ export declare function parseEnvLines(content: string): EnvLine[]; //# sourceMappingURL=env-parser.d.ts.map