/** * Check if value is null or undefined * @param {*} value */ declare const checkIsNull: (value: any) => boolean; /** * Check if value is null or undefined or empty * @param {*} value */ declare const checkIsEmpty: (value: any) => boolean; export { checkIsNull, checkIsEmpty };