/** * @description * Validates that the supplied value is valid base58, throwing exceptions if not */ export declare const base58Validate: (value?: unknown) => value is string; /** * @description * From the provided input, decode the base58 and return the result as an `Uint8Array`. */ export declare const base58Decode: (value: string) => Uint8Array; /** * @description * From the provided input, create the base58 and return the result as a string. */ export declare const base58Encode: (value: `0x${string}` | Uint8Array) => string; /** * @description Checks if the input is in base58, returning true/false */ export declare const isBase58: (value?: unknown) => value is string;