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