/** * Check if the string is Base58 * * @param str - The string to check * @returns True if the string matches the validation, false otherwise */ export default function isBase58(str: string): boolean;