/**
 * @param {*} value
 * @return {value is Set}
 */
export function isSet(value: any): value is Set<any>;
