import { isly } from "isly"; export type Base16 = string; export declare namespace Base16 { const type: isly.Type; const is: (value: any | string) => value is string; const flaw: (value: string | any) => isly.Flaw; function encode(value: ArrayBuffer | Uint8Array | string, length?: number): Base16; function decode(value: Base16): Uint8Array; function xor(data: Base16[]): Base16; function bytewiseAdd(data: Base16[]): Base16; function add(data: Base16[]): Base16; function combine(data: Base16[]): Base16; function random(length: number): Base16; }