/**
* Returns whether an environment variable value represents a truthy value.
*
* @paramvariable - Environment variable value to check.
* @returns True when the value is truthy, e.g. '1', 'true', etc.
*/exportdeclarefunctionisTruthy(variable: string | undefined): boolean;