/** TS-local bytes normalization seam mirroring KERIpy's byteable inputs. */ export type ByteLike = string | Uint8Array | ArrayBufferView; /** Normalize text or buffer-view inputs into one detached `Uint8Array`. */ export declare function normalizeByteLike(value: ByteLike): Uint8Array; /** Runtime guard for byte-like primitive constructor inputs. */ export declare function isByteLike(value: unknown): value is ByteLike; //# sourceMappingURL=byte-like.d.ts.map