import { Bytelike, HexString } from "./types.cjs";

//#region src/bytes.d.ts
declare const bytesToHex: (input: Uint8Array | number[]) => `0x${string}`;
declare const hexToBytes: (input: HexString) => Uint8Array;
declare const encodeBytesWithCharset: (bytes: Bytelike, charset: string) => string;
declare const decodeBytesWithCharset: (input: string, charset: string) => Uint8Array;
declare function reverseBytes(input: HexString): HexString;
declare function reverseBytes(input: string): string;
//#endregion
export { bytesToHex, decodeBytesWithCharset, encodeBytesWithCharset, hexToBytes, reverseBytes };