/** * Recursively interpolates `${VAR}` and `${VAR:-default}` patterns in all * string values of the given object/array/primitive. Non-string leaves * (numbers, booleans, null, undefined) are returned unchanged. * * Escaping: `$${LITERAL}` is replaced with the literal text `${LITERAL}`. */ export declare function interpolateValues(obj: unknown, environ: Record): unknown; //# sourceMappingURL=interpolation.d.ts.map