/** * @description * Validates that the supplied value is valid base64 */ export declare const base64Validate: (value?: unknown) => value is string; /** * @description Checks if the input is in base64, returning true/false */ export declare const isBase64: (value?: unknown) => value is string; /** * @description * From the provided input, decode the base64 and return the result as an `Uint8Array`. */ export declare const base64Decode: (value: string) => Uint8Array; /** * @description * From the provided input, create the base64 and return the result as a string. */ export declare const base64Encode: (value: `0x${string}` | Uint8Array) => string;