/** * Canonical value encoding for CAEL trace entries (JSON-stable shapes). * Shared by `encodeCAELValue` and `hashCAELEntry` in `hashes.ts`. */ interface CAELTypedArrayEnvelope { __cael_typed_array: string; data: number[]; } declare function isTypedArrayEnvelope(value: unknown): value is CAELTypedArrayEnvelope; export declare function constructTypedArray(type: string, data: number[]): unknown; export { isTypedArrayEnvelope }; export declare function toCanonical(value: unknown): unknown; //# sourceMappingURL=cael-canon.d.ts.map