import { SecretBackend } from './secret-backend'; export interface ResolveResult { env: Record; warnings: string[]; } export declare class EnvResolver { private readonly backend; constructor(backend: SecretBackend); /** * Resolve env content, skipping unresolvable references with warnings. * Previously this threw on any resolution failure; now it collects * warnings and continues so that a single missing key does not block * the entire process. */ resolveEnvContent(content: string): Promise>; resolveEnvContentWithWarnings(content: string): Promise; } //# sourceMappingURL=env-resolver.d.ts.map