/**
 * @param {*} value
 * @returns {value is bigint}
 */
export function isBigInt(value: any): value is bigint;
