import type { EnvVar } from '../types.js'; export interface InterpolateOptions { processEnv?: Record; baseContext?: Record; } export declare function interpolateValue(value: string, context: Record, options?: InterpolateOptions): string; export declare function interpolateVars(vars: EnvVar[], options?: InterpolateOptions): EnvVar[]; export declare function hasUnresolvedVars(value: string): boolean; export declare function getUnresolvedVars(vars: EnvVar[]): string[]; //# sourceMappingURL=interpolate.d.ts.map