declare namespace denostd { export namespace encoding { export namespace hex { /** * Decodes `src` into `src.length / 2` bytes. * If the input is malformed, an error will be thrown. */ export function decode(src: Uint8Array): Uint8Array; /** Encodes `src` into `src.length * 2` bytes. */ export function encode(src: Uint8Array): Uint8Array; export { } } } }