/** * Decodes a string from a Uint8Array */ export declare const getDecodedValue: (value: string | Uint8Array | undefined) => string; /** * Encodes a string to a Uint8Array */ export declare const getEncondedValue: (value: Uint8Array | string | undefined) => Uint8Array;