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