/**
 * Converts a Uint8Array to a boolean value.
 *
 * @param arr - The Uint8Array to convert.
 *
 * @returns The converted boolean value.
 */
export declare function byteToBool(arr: Uint8Array): boolean;
/**
 * Converts a boolean value to a Uint8Array.
 *
 * @param val - The boolean value to convert.
 *
 * @returns The converted Uint8Array.
 */
export declare function boolToByte(val: boolean): Uint8Array;
