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