/*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */ /** * Slow: O(n^2) time complexity * @__NO_SIDE_EFFECTS__ */ declare function convertRadix(data: number[] | Uint8Array, from: number, to: number): number[]; export { convertRadix, };