/** * Validates if a variable is not undefined * @param {any} variable variable to evaluate * @returns {boolean} if it is not undefined returns true, otherwise false */ declare const isNotUndefined: (variable: any) => boolean; export { isNotUndefined };