/** * Returns the square root of a bigint. * * * see https://stackoverflow.com/a/53684036/2010061 * * * **precondition**: the given bigint must be a perfect square * * @internal */ declare function bSqrt(v: bigint): bigint; export { bSqrt };