import { isly } from "isly"; import { Standard as Base32Standard } from "./Standard"; export type Base32 = string; export declare namespace Base32 { export import Standard = Base32Standard; const type: isly.Type; const is: (value: any | string) => value is string; const flaw: (value: string | any) => isly.Flaw; function encode(input: ArrayBuffer | Uint8Array | string | number | bigint, standard?: Standard, padding?: "" | "=" | "-"): Base32; function decode(input: Base32, standard?: Standard): Uint8Array; function xor(data: Base32[], standard?: Standard, padding?: "" | "=" | "-"): Base32; function bytewiseAdd(data: Base32[], standard?: Standard, padding?: "" | "=" | "-"): Base32; function add(data: Base32[], standard?: Standard, padding?: "" | "=" | "-"): Base32; function combine(data: Base32[], standard?: Standard, padding?: "" | "=" | "-"): Base32; function random(length: number): Base32; }