/** * If the highest power coefficient of the given polynomial is `0` then * `bRemoveLeadingZeros` can be called to remove all such highest terms so that * the returned array is a valid presentation of a polynomial. * @param p a polynomial whose leading zeros should be removed * * @doc */ declare function bRemoveLeadingZeros(p: bigint[]): bigint[]; export { bRemoveLeadingZeros };