/** * It let you know if a variable is a BigInt * @param {bigint | any} variable Variable that you want to know if it is a BigInt * @returns {boolean} if it is a BigInt returns true otherwise return false */ declare const isBigInt: (variable: bigint | any) => boolean; export { isBigInt };