/**
 * Check if value is null or undefned
 *
 * @param val Value to check
 * @returns true if value is undefined or null
 */
declare const isNullable: (val: any) => boolean;
export default isNullable;
