/**
 * Determine if the item has a value
 *
 * @param x - The value being tested
 * @returns The result
 *
 * @example
 * isSet<string>('hi')   // Returns: true
 * isSet<number>(void 0) // Returns: false
 */
export declare const isSet: <T>(x: any) => x is T;
