import * as mod from '../index.js'; export * from '../utils.js'; export declare function mul(a: bigint): (b: bigint) => bigint; export declare function radix(base: number): (n: bigint) => string; export declare function reverse(str: string): string; export declare function btc({ tip }: { tip: number; }): (seed: bigint) => Promise; export declare function drand({ tip, network }: { tip: number; network: Parameters[0]; }): (seed: bigint) => Promise; export declare function npm(pkg: string, ver: string, task?: () => Promise>): Promise; export declare function jsr(pkg: string, ver: string): Promise; export declare function crate(pkg: string, ver: string): Promise; export declare function traverse(xs: ReadonlyArray<(a: A) => B>): (a: A) => B[]; export declare const join: (xs: Iterable) => string; export declare function join_by(by: string): (xs: Iterable) => string; export declare function truncate_hex(hex: string): string; export declare function sort_by_slice(i: number, j: number): (arr: ReadonlyArray) => string[];