import { type DataViewReader } from "./data-view-reader.js"; /** * Build a DataView from a hex-encoded string. This is a polyfill * for `Uint8Array.fromHex()`. */ export declare const dataViewFromHex: (hex: string) => DataView; /** * Hex-encode the binary data in a DataView. */ export declare const hexFromDataView: (dataView: DataView | DataViewReader) => string; //# sourceMappingURL=data-view-from-hex.d.ts.map