/** * Resolves a relative path to an absolute path based on the current working directory. * * @param {string} relativePath The relative path to be resolved. * @returns {string} The absolute path. */ export function resolveDir(relativePath: string): string; /** * Finds a property in the global configuration and returns its value. * If the property is not found or is null/undefined, it returns a default value and logs an error if the default is also null/undefined. * * @param {string} propertyName The name of the property to find in the configuration. * @param {*} [defaultValue=null] The default value to return if the property is not found. * @returns {*} The property's value or the default value. */ export function getConfig(propertyName: string, defaultValue?: any): any; export const environment: string; //# sourceMappingURL=helpers.d.ts.map