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