/** * Interpolates environment variables in a string using the format {{ process.env.VARIABLE_NAME }}. * * @param value - The string containing environment variable templates to interpolate * @returns An object containing: * - interpolatedValue: The string with all environment variables replaced with their values * - unsetVars: Array of environment variable names that were not found * - interpolatedVars: Array of environment variable names that were successfully resolved */ export declare function interpolateEnvVariables(value: string): { interpolatedValue: string; unsetVars: string[]; interpolatedVars: string[]; }; //# sourceMappingURL=interpolate-env-variables.d.ts.map