/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /** * Verhoeff algorithm to compute a checksum. * * @see {@link https://en.wikipedia.org/wiki/Verhoeff_algorithm} */ export declare class Verhoeff { private readonly multiply; private readonly inverse; private readonly permute; computeChecksum(digits: string): number; } //# sourceMappingURL=Verhoeff.d.ts.map