import { Radix } from './util'; /** * Generates a cryptographic string given an amount of bits and a base radix * * @param bits The amount of bits to generate * @param radix The radix to generate for * @returns The cryptographic string * @example * ```ts * crypto(160, 64) * ``` */ export declare const crypto: (bits?: number, radix?: Radix) => string; export default crypto; //# sourceMappingURL=crypto.d.ts.map