/**
 * Check if value is not undefined
 *
 * @param value - Value to check
 * @returns false if value is undefined
 */
declare const isExists: <T = any>(value: T) => value is Exclude<T, undefined>;
export default isExists;
