/** * Returns the string representation of the BigInt. * * It is an alias of `BigInt#toString`. * * @example * ```typescript * console.log(toJSON(10n)); // => "10" * ``` */ declare const toJSON: (n: bigint) => string; export default toJSON; //# sourceMappingURL=toJSON.d.ts.map