cesr-ts 0.4.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. package/esm/src/adapters/async-iterable.js +8 -0
  2. package/esm/src/adapters/effection.js +6 -0
  3. package/esm/src/annotate/annotator.js +12 -0
  4. package/esm/src/annotate/cli.js +12 -0
  5. package/esm/src/annotate/comments.js +5 -1
  6. package/esm/src/annotate/denot.js +6 -0
  7. package/esm/src/annotate/render.js +15 -3
  8. package/esm/src/core/bytes.js +9 -0
  9. package/esm/src/core/errors.js +3 -0
  10. package/esm/src/core/parser-engine.js +1 -1
  11. package/esm/src/core/parser-frame-parser.js +22 -18
  12. package/esm/src/core/vocabulary.js +47 -0
  13. package/esm/src/index.js +5 -0
  14. package/esm/src/parser/attachment-parser.js +4 -0
  15. package/esm/src/parser/cold-start.js +6 -0
  16. package/esm/src/parser/group-dispatch.js +2 -2
  17. package/esm/src/primitives/aggor.js +374 -30
  18. package/esm/src/primitives/bexter.js +2 -3
  19. package/esm/src/primitives/blinder.js +6 -0
  20. package/esm/src/primitives/byte-like.js +19 -0
  21. package/esm/src/primitives/cigar.js +17 -3
  22. package/esm/src/primitives/cipher.js +91 -6
  23. package/esm/src/primitives/codex.js +39 -6
  24. package/esm/src/primitives/compactor.js +307 -3
  25. package/esm/src/primitives/counter.js +6 -2
  26. package/esm/src/primitives/dater.js +1 -2
  27. package/esm/src/primitives/decimer.js +7 -11
  28. package/esm/src/primitives/decrypter.js +123 -7
  29. package/esm/src/primitives/diger.js +57 -3
  30. package/esm/src/primitives/disclosure.js +300 -0
  31. package/esm/src/primitives/encrypter.js +130 -7
  32. package/esm/src/primitives/hydrate.js +49 -0
  33. package/esm/src/primitives/ilker.js +2 -3
  34. package/esm/src/primitives/indexer.js +21 -4
  35. package/esm/src/primitives/labeler.js +1 -2
  36. package/esm/src/primitives/mapper.js +612 -35
  37. package/esm/src/primitives/matter.js +133 -3
  38. package/esm/src/primitives/mediar.js +6 -0
  39. package/esm/src/primitives/noncer.js +2 -3
  40. package/esm/src/primitives/number.js +1 -2
  41. package/esm/src/primitives/pather.js +102 -5
  42. package/esm/src/primitives/prefixer.js +1 -2
  43. package/esm/src/primitives/primitive.js +14 -0
  44. package/esm/src/primitives/registry.js +2 -0
  45. package/esm/src/primitives/saider.js +80 -3
  46. package/esm/src/primitives/salter.js +96 -2
  47. package/esm/src/primitives/sealed-box.js +41 -0
  48. package/esm/src/primitives/seqner.js +1 -2
  49. package/esm/src/primitives/siger.js +58 -3
  50. package/esm/src/primitives/signer.js +243 -9
  51. package/esm/src/primitives/streamer.js +28 -0
  52. package/esm/src/primitives/structing.js +727 -0
  53. package/esm/src/primitives/structor.js +20 -0
  54. package/esm/src/primitives/tagger.js +1 -2
  55. package/esm/src/primitives/texter.js +1 -2
  56. package/esm/src/primitives/tholder.js +552 -10
  57. package/esm/src/primitives/traitor.js +2 -3
  58. package/esm/src/primitives/verfer.js +50 -6
  59. package/esm/src/primitives/verser.js +16 -6
  60. package/esm/src/router/router-stub.js +1 -0
  61. package/esm/src/serder/native.js +1326 -0
  62. package/esm/src/serder/serder.js +1558 -59
  63. package/esm/src/serder/serdery.js +92 -7
  64. package/esm/src/serder/smell.js +26 -1
  65. package/esm/src/tables/codex-utils.js +2 -0
  66. package/esm/src/tables/counter-codex.js +2 -0
  67. package/esm/src/tables/counter-groups.js +6 -0
  68. package/esm/src/tables/versions.js +4 -0
  69. package/esm/src/version.js +5 -2
  70. package/package.json +5 -2
  71. package/types/src/adapters/async-iterable.d.ts +8 -0
  72. package/types/src/adapters/async-iterable.d.ts.map +1 -1
  73. package/types/src/adapters/effection.d.ts +7 -0
  74. package/types/src/adapters/effection.d.ts.map +1 -1
  75. package/types/src/annotate/annotator.d.ts +12 -0
  76. package/types/src/annotate/annotator.d.ts.map +1 -1
  77. package/types/src/annotate/cli.d.ts +13 -0
  78. package/types/src/annotate/cli.d.ts.map +1 -1
  79. package/types/src/annotate/comments.d.ts +4 -0
  80. package/types/src/annotate/comments.d.ts.map +1 -1
  81. package/types/src/annotate/denot.d.ts +6 -0
  82. package/types/src/annotate/denot.d.ts.map +1 -1
  83. package/types/src/annotate/render.d.ts.map +1 -1
  84. package/types/src/annotate/types.d.ts +2 -0
  85. package/types/src/annotate/types.d.ts.map +1 -1
  86. package/types/src/bench/parser-benchmark.d.ts +3 -0
  87. package/types/src/bench/parser-benchmark.d.ts.map +1 -1
  88. package/types/src/core/bytes.d.ts +9 -0
  89. package/types/src/core/bytes.d.ts.map +1 -1
  90. package/types/src/core/errors.d.ts +3 -0
  91. package/types/src/core/errors.d.ts.map +1 -1
  92. package/types/src/core/parser-engine.d.ts +4 -0
  93. package/types/src/core/parser-engine.d.ts.map +1 -1
  94. package/types/src/core/parser-frame-parser.d.ts.map +1 -1
  95. package/types/src/core/types.d.ts +2 -0
  96. package/types/src/core/types.d.ts.map +1 -1
  97. package/types/src/core/vocabulary.d.ts +48 -0
  98. package/types/src/core/vocabulary.d.ts.map +1 -0
  99. package/types/src/index.d.ts +5 -0
  100. package/types/src/index.d.ts.map +1 -1
  101. package/types/src/parser/attachment-parser.d.ts +4 -0
  102. package/types/src/parser/attachment-parser.d.ts.map +1 -1
  103. package/types/src/parser/cold-start.d.ts +6 -0
  104. package/types/src/parser/cold-start.d.ts.map +1 -1
  105. package/types/src/parser/group-dispatch.d.ts.map +1 -1
  106. package/types/src/primitives/aggor.d.ts +100 -13
  107. package/types/src/primitives/aggor.d.ts.map +1 -1
  108. package/types/src/primitives/bexter.d.ts.map +1 -1
  109. package/types/src/primitives/blinder.d.ts +6 -0
  110. package/types/src/primitives/blinder.d.ts.map +1 -1
  111. package/types/src/primitives/byte-like.d.ts +7 -0
  112. package/types/src/primitives/byte-like.d.ts.map +1 -0
  113. package/types/src/primitives/cigar.d.ts +11 -1
  114. package/types/src/primitives/cigar.d.ts.map +1 -1
  115. package/types/src/primitives/cipher.d.ts +73 -2
  116. package/types/src/primitives/cipher.d.ts.map +1 -1
  117. package/types/src/primitives/codex.d.ts +34 -4
  118. package/types/src/primitives/codex.d.ts.map +1 -1
  119. package/types/src/primitives/compactor.d.ts +94 -2
  120. package/types/src/primitives/compactor.d.ts.map +1 -1
  121. package/types/src/primitives/counter.d.ts.map +1 -1
  122. package/types/src/primitives/dater.d.ts.map +1 -1
  123. package/types/src/primitives/decimer.d.ts.map +1 -1
  124. package/types/src/primitives/decrypter.d.ts +64 -3
  125. package/types/src/primitives/decrypter.d.ts.map +1 -1
  126. package/types/src/primitives/diger.d.ts +16 -0
  127. package/types/src/primitives/diger.d.ts.map +1 -1
  128. package/types/src/primitives/disclosure.d.ts +201 -0
  129. package/types/src/primitives/disclosure.d.ts.map +1 -0
  130. package/types/src/primitives/encrypter.d.ts +66 -4
  131. package/types/src/primitives/encrypter.d.ts.map +1 -1
  132. package/types/src/primitives/hydrate.d.ts +20 -0
  133. package/types/src/primitives/hydrate.d.ts.map +1 -0
  134. package/types/src/primitives/ilker.d.ts.map +1 -1
  135. package/types/src/primitives/indexer.d.ts.map +1 -1
  136. package/types/src/primitives/labeler.d.ts.map +1 -1
  137. package/types/src/primitives/mapper.d.ts +132 -11
  138. package/types/src/primitives/mapper.d.ts.map +1 -1
  139. package/types/src/primitives/matter.d.ts +33 -1
  140. package/types/src/primitives/matter.d.ts.map +1 -1
  141. package/types/src/primitives/mediar.d.ts +6 -0
  142. package/types/src/primitives/mediar.d.ts.map +1 -1
  143. package/types/src/primitives/noncer.d.ts.map +1 -1
  144. package/types/src/primitives/number.d.ts.map +1 -1
  145. package/types/src/primitives/pather.d.ts +21 -0
  146. package/types/src/primitives/pather.d.ts.map +1 -1
  147. package/types/src/primitives/prefixer.d.ts.map +1 -1
  148. package/types/src/primitives/primitive.d.ts +26 -0
  149. package/types/src/primitives/primitive.d.ts.map +1 -1
  150. package/types/src/primitives/registry.d.ts +3 -0
  151. package/types/src/primitives/registry.d.ts.map +1 -1
  152. package/types/src/primitives/saider.d.ts +41 -0
  153. package/types/src/primitives/saider.d.ts.map +1 -1
  154. package/types/src/primitives/salter.d.ts +56 -1
  155. package/types/src/primitives/salter.d.ts.map +1 -1
  156. package/types/src/primitives/sealed-box.d.ts +29 -0
  157. package/types/src/primitives/sealed-box.d.ts.map +1 -0
  158. package/types/src/primitives/seqner.d.ts.map +1 -1
  159. package/types/src/primitives/siger.d.ts +14 -0
  160. package/types/src/primitives/siger.d.ts.map +1 -1
  161. package/types/src/primitives/signer.d.ts +80 -4
  162. package/types/src/primitives/signer.d.ts.map +1 -1
  163. package/types/src/primitives/streamer.d.ts +31 -0
  164. package/types/src/primitives/streamer.d.ts.map +1 -0
  165. package/types/src/primitives/structing.d.ts +4114 -0
  166. package/types/src/primitives/structing.d.ts.map +1 -0
  167. package/types/src/primitives/structor.d.ts +6 -0
  168. package/types/src/primitives/structor.d.ts.map +1 -1
  169. package/types/src/primitives/tagger.d.ts.map +1 -1
  170. package/types/src/primitives/texter.d.ts.map +1 -1
  171. package/types/src/primitives/tholder.d.ts +150 -5
  172. package/types/src/primitives/tholder.d.ts.map +1 -1
  173. package/types/src/primitives/traitor.d.ts.map +1 -1
  174. package/types/src/primitives/unknown.d.ts +1 -0
  175. package/types/src/primitives/unknown.d.ts.map +1 -1
  176. package/types/src/primitives/verfer.d.ts +12 -0
  177. package/types/src/primitives/verfer.d.ts.map +1 -1
  178. package/types/src/primitives/verser.d.ts +14 -3
  179. package/types/src/primitives/verser.d.ts.map +1 -1
  180. package/types/src/router/router-stub.d.ts +3 -0
  181. package/types/src/router/router-stub.d.ts.map +1 -1
  182. package/types/src/serder/native.d.ts +115 -0
  183. package/types/src/serder/native.d.ts.map +1 -0
  184. package/types/src/serder/serder.d.ts +187 -9
  185. package/types/src/serder/serder.d.ts.map +1 -1
  186. package/types/src/serder/serdery.d.ts +42 -0
  187. package/types/src/serder/serdery.d.ts.map +1 -1
  188. package/types/src/serder/smell.d.ts +22 -0
  189. package/types/src/serder/smell.d.ts.map +1 -1
  190. package/types/src/tables/codex-utils.d.ts +3 -0
  191. package/types/src/tables/codex-utils.d.ts.map +1 -1
  192. package/types/src/tables/counter-codex.d.ts +4 -0
  193. package/types/src/tables/counter-codex.d.ts.map +1 -1
  194. package/types/src/tables/counter-groups.d.ts +6 -0
  195. package/types/src/tables/counter-groups.d.ts.map +1 -1
  196. package/types/src/tables/counter.tables.generated.d.ts.map +1 -1
  197. package/types/src/tables/indexer.codex.generated.d.ts.map +1 -1
  198. package/types/src/tables/matter.codex.generated.d.ts.map +1 -1
  199. package/types/src/tables/table-types.d.ts +6 -0
  200. package/types/src/tables/table-types.d.ts.map +1 -1
  201. package/types/src/tables/versions.d.ts +6 -0
  202. package/types/src/tables/versions.d.ts.map +1 -1
  203. package/types/src/version.d.ts +5 -2
  204. package/types/src/version.d.ts.map +1 -1
@@ -0,0 +1,4114 @@
1
+ import { Diger } from "./diger.js";
2
+ import { Labeler } from "./labeler.js";
3
+ import type { Matter, MatterInit } from "./matter.js";
4
+ import { Noncer } from "./noncer.js";
5
+ import { NumberPrimitive } from "./number.js";
6
+ import { Prefixer } from "./prefixer.js";
7
+ import { Texter } from "./texter.js";
8
+ import { Verser } from "./verser.js";
9
+ type Qb64b = Uint8Array;
10
+ /**
11
+ * Fixed-field CESR primitive admitted by KERIpy `structing.py` cast tables.
12
+ *
13
+ * Maintainer model:
14
+ * - this is the only public primitive taxonomy the module needs
15
+ * - the named struct values themselves stay plain frozen records
16
+ */
17
+ export type StructingPrimitive = Diger | Labeler | Noncer | NumberPrimitive | Prefixer | Texter | Verser;
18
+ /**
19
+ * Field-cast metadata ported from KERIpy `Castage`.
20
+ *
21
+ * `ipn` records which primitive property should be exposed in crew/object
22
+ * form. When `ipn` is `null`, the field serializes through canonical `qb64`.
23
+ */
24
+ export type Castage = Readonly<{
25
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
26
+ ipn: string | null;
27
+ }>;
28
+ /**
29
+ * Build one immutable cast entry.
30
+ *
31
+ * KERIpy substance:
32
+ * - mirrors `Castage(kls=..., ipn=...)`
33
+ *
34
+ * `ipn` is the string projection name used in crew/SAD form. For example:
35
+ * - `NumberPrimitive` uses `numh`
36
+ * - `Noncer` uses `nonce`
37
+ * - `Labeler` / `Texter` use `text`
38
+ * - `null` falls back to canonical `qb64`
39
+ */
40
+ export declare function castage(kls: new (init: Matter | MatterInit) => StructingPrimitive, ipn?: string | null): Castage;
41
+ export type StructingCoden = "DigestSealSingles" | "MerkleRootSealSingles" | "SealSourceCouples" | "SealSourceTriples" | "SealSourceLastSingles" | "BackerRegistrarSealCouples" | "TypedDigestSealCouples" | "BlindedStateQuadruples" | "BoundStateSextuples" | "TypedMediaQuadruples";
42
+ /**
43
+ * Digest seal fixed-field value (`d`).
44
+ *
45
+ * KERIpy substance:
46
+ * - named single-value seal used for SAID/digest anchoring
47
+ *
48
+ * Counter family:
49
+ * - `DigestSealSingles`
50
+ */
51
+ export type SealDigest = Readonly<{
52
+ d: Diger;
53
+ }>;
54
+ export declare const SealDigest: Readonly<{
55
+ readonly isSad: (value: unknown) => value is Readonly<{
56
+ d: string;
57
+ }>;
58
+ readonly fromSad: (value: Readonly<{
59
+ d: string;
60
+ }>) => Readonly<{
61
+ d: Diger;
62
+ }>;
63
+ readonly toSad: (value: Readonly<{
64
+ d: Diger;
65
+ }>) => Readonly<{
66
+ d: string;
67
+ }>;
68
+ readonly name: string;
69
+ readonly fields: readonly ["d"];
70
+ readonly cast: Readonly<Record<"d", Readonly<{
71
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
72
+ ipn: string | null;
73
+ }>>>;
74
+ readonly coden: StructingCoden;
75
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
76
+ d: Diger;
77
+ }>;
78
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
79
+ d: Diger;
80
+ }>;
81
+ readonly toTuple: (value: Readonly<{
82
+ d: Diger;
83
+ }>) => readonly [Diger];
84
+ readonly toCrew: (value: Readonly<{
85
+ d: Diger;
86
+ }>) => Readonly<{
87
+ d: string;
88
+ }>;
89
+ readonly qb64: (value: Readonly<{
90
+ d: Diger;
91
+ }>) => string;
92
+ readonly qb64b: (value: Readonly<{
93
+ d: Diger;
94
+ }>) => Uint8Array;
95
+ readonly qb2: (value: Readonly<{
96
+ d: Diger;
97
+ }>) => Uint8Array;
98
+ }>;
99
+ /**
100
+ * Merkle-root seal fixed-field value (`rd`).
101
+ *
102
+ * KERIpy substance:
103
+ * - named single-value seal for anchored Merkle-tree root digests
104
+ *
105
+ * Counter family:
106
+ * - `MerkleRootSealSingles`
107
+ */
108
+ export type SealRoot = Readonly<{
109
+ rd: Diger;
110
+ }>;
111
+ export declare const SealRoot: Readonly<{
112
+ readonly isSad: (value: unknown) => value is Readonly<{
113
+ rd: string;
114
+ }>;
115
+ readonly fromSad: (value: Readonly<{
116
+ rd: string;
117
+ }>) => Readonly<{
118
+ rd: Diger;
119
+ }>;
120
+ readonly toSad: (value: Readonly<{
121
+ rd: Diger;
122
+ }>) => Readonly<{
123
+ rd: string;
124
+ }>;
125
+ readonly name: string;
126
+ readonly fields: readonly ["rd"];
127
+ readonly cast: Readonly<Record<"rd", Readonly<{
128
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
129
+ ipn: string | null;
130
+ }>>>;
131
+ readonly coden: StructingCoden;
132
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
133
+ rd: Diger;
134
+ }>;
135
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
136
+ rd: Diger;
137
+ }>;
138
+ readonly toTuple: (value: Readonly<{
139
+ rd: Diger;
140
+ }>) => readonly [Diger];
141
+ readonly toCrew: (value: Readonly<{
142
+ rd: Diger;
143
+ }>) => Readonly<{
144
+ rd: string;
145
+ }>;
146
+ readonly qb64: (value: Readonly<{
147
+ rd: Diger;
148
+ }>) => string;
149
+ readonly qb64b: (value: Readonly<{
150
+ rd: Diger;
151
+ }>) => Uint8Array;
152
+ readonly qb2: (value: Readonly<{
153
+ rd: Diger;
154
+ }>) => Uint8Array;
155
+ }>;
156
+ /**
157
+ * Source seal fixed-field value (`s`, `d`).
158
+ *
159
+ * Maintainer model:
160
+ * - the issuer/delegator prefix is implied by surrounding context
161
+ * - `s` stays a real `NumberPrimitive`; crew/object form projects `.numh`
162
+ *
163
+ * Counter family:
164
+ * - `SealSourceCouples`
165
+ */
166
+ export type SealSource = Readonly<{
167
+ s: NumberPrimitive;
168
+ d: Diger;
169
+ }>;
170
+ export declare const SealSource: Readonly<{
171
+ readonly isSad: (value: unknown) => value is Readonly<{
172
+ s: string;
173
+ d: string;
174
+ }>;
175
+ readonly fromSad: (value: Readonly<{
176
+ s: string;
177
+ d: string;
178
+ }>) => Readonly<{
179
+ s: NumberPrimitive;
180
+ d: Diger;
181
+ }>;
182
+ readonly toSad: (value: Readonly<{
183
+ s: NumberPrimitive;
184
+ d: Diger;
185
+ }>) => Readonly<{
186
+ s: string;
187
+ d: string;
188
+ }>;
189
+ readonly name: string;
190
+ readonly fields: readonly ["s", "d"];
191
+ readonly cast: Readonly<Record<"d" | "s", Readonly<{
192
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
193
+ ipn: string | null;
194
+ }>>>;
195
+ readonly coden: StructingCoden;
196
+ readonly fromTuple: (tuple: readonly [NumberPrimitive, Diger]) => Readonly<{
197
+ s: NumberPrimitive;
198
+ d: Diger;
199
+ }>;
200
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
201
+ s: NumberPrimitive;
202
+ d: Diger;
203
+ }>;
204
+ readonly toTuple: (value: Readonly<{
205
+ s: NumberPrimitive;
206
+ d: Diger;
207
+ }>) => readonly [NumberPrimitive, Diger];
208
+ readonly toCrew: (value: Readonly<{
209
+ s: NumberPrimitive;
210
+ d: Diger;
211
+ }>) => Readonly<{
212
+ s: string;
213
+ d: string;
214
+ }>;
215
+ readonly qb64: (value: Readonly<{
216
+ s: NumberPrimitive;
217
+ d: Diger;
218
+ }>) => string;
219
+ readonly qb64b: (value: Readonly<{
220
+ s: NumberPrimitive;
221
+ d: Diger;
222
+ }>) => Uint8Array;
223
+ readonly qb2: (value: Readonly<{
224
+ s: NumberPrimitive;
225
+ d: Diger;
226
+ }>) => Uint8Array;
227
+ }>;
228
+ /**
229
+ * Event seal fixed-field value (`i`, `s`, `d`).
230
+ *
231
+ * KERIpy substance:
232
+ * - named triple pointing at one anchoring or delegated key event
233
+ *
234
+ * Counter family:
235
+ * - `SealSourceTriples`
236
+ */
237
+ export type SealEvent = Readonly<{
238
+ i: Prefixer;
239
+ s: NumberPrimitive;
240
+ d: Diger;
241
+ }>;
242
+ export declare const SealEvent: Readonly<{
243
+ readonly isSad: (value: unknown) => value is Readonly<{
244
+ i: string;
245
+ s: string;
246
+ d: string;
247
+ }>;
248
+ readonly fromSad: (value: Readonly<{
249
+ i: string;
250
+ s: string;
251
+ d: string;
252
+ }>) => Readonly<{
253
+ i: Prefixer;
254
+ s: NumberPrimitive;
255
+ d: Diger;
256
+ }>;
257
+ readonly toSad: (value: Readonly<{
258
+ i: Prefixer;
259
+ s: NumberPrimitive;
260
+ d: Diger;
261
+ }>) => Readonly<{
262
+ i: string;
263
+ s: string;
264
+ d: string;
265
+ }>;
266
+ readonly name: string;
267
+ readonly fields: readonly ["i", "s", "d"];
268
+ readonly cast: Readonly<Record<"d" | "s" | "i", Readonly<{
269
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
270
+ ipn: string | null;
271
+ }>>>;
272
+ readonly coden: StructingCoden;
273
+ readonly fromTuple: (tuple: readonly [Prefixer, NumberPrimitive, Diger]) => Readonly<{
274
+ i: Prefixer;
275
+ s: NumberPrimitive;
276
+ d: Diger;
277
+ }>;
278
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b]) => Readonly<{
279
+ i: Prefixer;
280
+ s: NumberPrimitive;
281
+ d: Diger;
282
+ }>;
283
+ readonly toTuple: (value: Readonly<{
284
+ i: Prefixer;
285
+ s: NumberPrimitive;
286
+ d: Diger;
287
+ }>) => readonly [Prefixer, NumberPrimitive, Diger];
288
+ readonly toCrew: (value: Readonly<{
289
+ i: Prefixer;
290
+ s: NumberPrimitive;
291
+ d: Diger;
292
+ }>) => Readonly<{
293
+ i: string;
294
+ s: string;
295
+ d: string;
296
+ }>;
297
+ readonly qb64: (value: Readonly<{
298
+ i: Prefixer;
299
+ s: NumberPrimitive;
300
+ d: Diger;
301
+ }>) => string;
302
+ readonly qb64b: (value: Readonly<{
303
+ i: Prefixer;
304
+ s: NumberPrimitive;
305
+ d: Diger;
306
+ }>) => Uint8Array;
307
+ readonly qb2: (value: Readonly<{
308
+ i: Prefixer;
309
+ s: NumberPrimitive;
310
+ d: Diger;
311
+ }>) => Uint8Array;
312
+ }>;
313
+ /**
314
+ * Last-establishment lookup seal (`i`).
315
+ *
316
+ * KERIpy substance:
317
+ * - named single-value marker that says "use the latest establishment event
318
+ * from this prefix"
319
+ *
320
+ * Counter family:
321
+ * - `SealSourceLastSingles`
322
+ */
323
+ export type SealLast = Readonly<{
324
+ i: Prefixer;
325
+ }>;
326
+ export declare const SealLast: Readonly<{
327
+ readonly isSad: (value: unknown) => value is Readonly<{
328
+ i: string;
329
+ }>;
330
+ readonly fromSad: (value: Readonly<{
331
+ i: string;
332
+ }>) => Readonly<{
333
+ i: Prefixer;
334
+ }>;
335
+ readonly toSad: (value: Readonly<{
336
+ i: Prefixer;
337
+ }>) => Readonly<{
338
+ i: string;
339
+ }>;
340
+ readonly name: string;
341
+ readonly fields: readonly ["i"];
342
+ readonly cast: Readonly<Record<"i", Readonly<{
343
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
344
+ ipn: string | null;
345
+ }>>>;
346
+ readonly coden: StructingCoden;
347
+ readonly fromTuple: (tuple: readonly [Prefixer]) => Readonly<{
348
+ i: Prefixer;
349
+ }>;
350
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
351
+ i: Prefixer;
352
+ }>;
353
+ readonly toTuple: (value: Readonly<{
354
+ i: Prefixer;
355
+ }>) => readonly [Prefixer];
356
+ readonly toCrew: (value: Readonly<{
357
+ i: Prefixer;
358
+ }>) => Readonly<{
359
+ i: string;
360
+ }>;
361
+ readonly qb64: (value: Readonly<{
362
+ i: Prefixer;
363
+ }>) => string;
364
+ readonly qb64b: (value: Readonly<{
365
+ i: Prefixer;
366
+ }>) => Uint8Array;
367
+ readonly qb2: (value: Readonly<{
368
+ i: Prefixer;
369
+ }>) => Uint8Array;
370
+ }>;
371
+ /**
372
+ * Backer/registrar seal fixed-field value (`bi`, `d`).
373
+ *
374
+ * KERIpy substance:
375
+ * - named pair used for registrar/backer references where `bi` is the backer
376
+ * prefix and `d` is the attached metadata/event digest
377
+ *
378
+ * Counter family:
379
+ * - `BackerRegistrarSealCouples`
380
+ */
381
+ export type SealBack = Readonly<{
382
+ bi: Prefixer;
383
+ d: Diger;
384
+ }>;
385
+ export declare const SealBack: Readonly<{
386
+ readonly isSad: (value: unknown) => value is Readonly<{
387
+ bi: string;
388
+ d: string;
389
+ }>;
390
+ readonly fromSad: (value: Readonly<{
391
+ bi: string;
392
+ d: string;
393
+ }>) => Readonly<{
394
+ bi: Prefixer;
395
+ d: Diger;
396
+ }>;
397
+ readonly toSad: (value: Readonly<{
398
+ bi: Prefixer;
399
+ d: Diger;
400
+ }>) => Readonly<{
401
+ bi: string;
402
+ d: string;
403
+ }>;
404
+ readonly name: string;
405
+ readonly fields: readonly ["bi", "d"];
406
+ readonly cast: Readonly<Record<"d" | "bi", Readonly<{
407
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
408
+ ipn: string | null;
409
+ }>>>;
410
+ readonly coden: StructingCoden;
411
+ readonly fromTuple: (tuple: readonly [Prefixer, Diger]) => Readonly<{
412
+ bi: Prefixer;
413
+ d: Diger;
414
+ }>;
415
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
416
+ bi: Prefixer;
417
+ d: Diger;
418
+ }>;
419
+ readonly toTuple: (value: Readonly<{
420
+ bi: Prefixer;
421
+ d: Diger;
422
+ }>) => readonly [Prefixer, Diger];
423
+ readonly toCrew: (value: Readonly<{
424
+ bi: Prefixer;
425
+ d: Diger;
426
+ }>) => Readonly<{
427
+ bi: string;
428
+ d: string;
429
+ }>;
430
+ readonly qb64: (value: Readonly<{
431
+ bi: Prefixer;
432
+ d: Diger;
433
+ }>) => string;
434
+ readonly qb64b: (value: Readonly<{
435
+ bi: Prefixer;
436
+ d: Diger;
437
+ }>) => Uint8Array;
438
+ readonly qb2: (value: Readonly<{
439
+ bi: Prefixer;
440
+ d: Diger;
441
+ }>) => Uint8Array;
442
+ }>;
443
+ /**
444
+ * Typed-digest seal fixed-field value (`t`, `d`).
445
+ *
446
+ * KERIpy substance:
447
+ * - pairs one `Verser` with one digest so typed/versioned digests stay
448
+ * explicit in counted attachment groups
449
+ *
450
+ * Counter family:
451
+ * - `TypedDigestSealCouples`
452
+ */
453
+ export type SealKind = Readonly<{
454
+ t: Verser;
455
+ d: Diger;
456
+ }>;
457
+ export declare const SealKind: Readonly<{
458
+ readonly isSad: (value: unknown) => value is Readonly<{
459
+ t: string;
460
+ d: string;
461
+ }>;
462
+ readonly fromSad: (value: Readonly<{
463
+ t: string;
464
+ d: string;
465
+ }>) => Readonly<{
466
+ t: Verser;
467
+ d: Diger;
468
+ }>;
469
+ readonly toSad: (value: Readonly<{
470
+ t: Verser;
471
+ d: Diger;
472
+ }>) => Readonly<{
473
+ t: string;
474
+ d: string;
475
+ }>;
476
+ readonly name: string;
477
+ readonly fields: readonly ["t", "d"];
478
+ readonly cast: Readonly<Record<"d" | "t", Readonly<{
479
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
480
+ ipn: string | null;
481
+ }>>>;
482
+ readonly coden: StructingCoden;
483
+ readonly fromTuple: (tuple: readonly [Verser, Diger]) => Readonly<{
484
+ t: Verser;
485
+ d: Diger;
486
+ }>;
487
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
488
+ t: Verser;
489
+ d: Diger;
490
+ }>;
491
+ readonly toTuple: (value: Readonly<{
492
+ t: Verser;
493
+ d: Diger;
494
+ }>) => readonly [Verser, Diger];
495
+ readonly toCrew: (value: Readonly<{
496
+ t: Verser;
497
+ d: Diger;
498
+ }>) => Readonly<{
499
+ t: string;
500
+ d: string;
501
+ }>;
502
+ readonly qb64: (value: Readonly<{
503
+ t: Verser;
504
+ d: Diger;
505
+ }>) => string;
506
+ readonly qb64b: (value: Readonly<{
507
+ t: Verser;
508
+ d: Diger;
509
+ }>) => Uint8Array;
510
+ readonly qb2: (value: Readonly<{
511
+ t: Verser;
512
+ d: Diger;
513
+ }>) => Uint8Array;
514
+ }>;
515
+ /**
516
+ * Blind-state fixed-field value (`d`, `u`, `td`, `ts`).
517
+ *
518
+ * Field meanings:
519
+ * - `d`: blinded commitment over the full tuple
520
+ * - `u`: disclosure UUID / nonce that scopes the blinding operation
521
+ * - `td`: disclosed ACDC/TEL SAID, or empty placeholder when not yet revealed
522
+ * - `ts`: disclosed state label, or empty placeholder when not yet revealed
523
+ *
524
+ * TypeScript divergence:
525
+ * - the digest-like slots remain `Noncer`, not `Diger`, so empty-placeholder
526
+ * state keeps the same expressive range as KERIpy
527
+ *
528
+ * Why `Noncer` instead of `Diger`:
529
+ * - KERIpy treats these slots as placeholder-capable digest material
530
+ * - an empty blind-state field is still meaningful during graduated
531
+ * disclosure, so the value space must include "present but empty"
532
+ *
533
+ * Counter family:
534
+ * - `BlindedStateQuadruples`
535
+ */
536
+ export type BlindState = Readonly<{
537
+ d: Noncer;
538
+ u: Noncer;
539
+ td: Noncer;
540
+ ts: Labeler;
541
+ }>;
542
+ export declare const BlindState: Readonly<{
543
+ readonly isSad: (value: unknown) => value is Readonly<{
544
+ d: string;
545
+ u: string;
546
+ td: string;
547
+ ts: string;
548
+ }>;
549
+ readonly fromSad: (value: Readonly<{
550
+ d: string;
551
+ u: string;
552
+ td: string;
553
+ ts: string;
554
+ }>) => Readonly<{
555
+ d: Noncer;
556
+ u: Noncer;
557
+ td: Noncer;
558
+ ts: Labeler;
559
+ }>;
560
+ readonly toSad: (value: Readonly<{
561
+ d: Noncer;
562
+ u: Noncer;
563
+ td: Noncer;
564
+ ts: Labeler;
565
+ }>) => Readonly<{
566
+ d: string;
567
+ u: string;
568
+ td: string;
569
+ ts: string;
570
+ }>;
571
+ readonly name: string;
572
+ readonly fields: readonly ["d", "u", "td", "ts"];
573
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
574
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
575
+ ipn: string | null;
576
+ }>>>;
577
+ readonly coden: StructingCoden;
578
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler]) => Readonly<{
579
+ d: Noncer;
580
+ u: Noncer;
581
+ td: Noncer;
582
+ ts: Labeler;
583
+ }>;
584
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
585
+ d: Noncer;
586
+ u: Noncer;
587
+ td: Noncer;
588
+ ts: Labeler;
589
+ }>;
590
+ readonly toTuple: (value: Readonly<{
591
+ d: Noncer;
592
+ u: Noncer;
593
+ td: Noncer;
594
+ ts: Labeler;
595
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler];
596
+ readonly toCrew: (value: Readonly<{
597
+ d: Noncer;
598
+ u: Noncer;
599
+ td: Noncer;
600
+ ts: Labeler;
601
+ }>) => Readonly<{
602
+ d: string;
603
+ u: string;
604
+ td: string;
605
+ ts: string;
606
+ }>;
607
+ readonly qb64: (value: Readonly<{
608
+ d: Noncer;
609
+ u: Noncer;
610
+ td: Noncer;
611
+ ts: Labeler;
612
+ }>) => string;
613
+ readonly qb64b: (value: Readonly<{
614
+ d: Noncer;
615
+ u: Noncer;
616
+ td: Noncer;
617
+ ts: Labeler;
618
+ }>) => Uint8Array;
619
+ readonly qb2: (value: Readonly<{
620
+ d: Noncer;
621
+ u: Noncer;
622
+ td: Noncer;
623
+ ts: Labeler;
624
+ }>) => Uint8Array;
625
+ }>;
626
+ /**
627
+ * Bound blind-state fixed-field value (`d`, `u`, `td`, `ts`, `bn`, `bd`).
628
+ *
629
+ * KERIpy substance:
630
+ * - extends blind state with the issuee key-state cross-anchor pair used for
631
+ * bound-state sextuples
632
+ *
633
+ * Field meanings:
634
+ * - `bn`: issuee key-state sequence number for the cross-anchor
635
+ * - `bd`: issuee key-state digest for the cross-anchor
636
+ *
637
+ * Placeholder semantics:
638
+ * - `bn=0`, `bd=""` is a real placeholder combination used during
639
+ * graduated-disclosure search and commitment recomputation
640
+ *
641
+ * Counter family:
642
+ * - `BoundStateSextuples`
643
+ */
644
+ export type BoundState = Readonly<{
645
+ d: Noncer;
646
+ u: Noncer;
647
+ td: Noncer;
648
+ ts: Labeler;
649
+ bn: NumberPrimitive;
650
+ bd: Noncer;
651
+ }>;
652
+ export declare const BoundState: Readonly<{
653
+ readonly isSad: (value: unknown) => value is Readonly<{
654
+ d: string;
655
+ u: string;
656
+ td: string;
657
+ ts: string;
658
+ bn: string;
659
+ bd: string;
660
+ }>;
661
+ readonly fromSad: (value: Readonly<{
662
+ d: string;
663
+ u: string;
664
+ td: string;
665
+ ts: string;
666
+ bn: string;
667
+ bd: string;
668
+ }>) => Readonly<{
669
+ d: Noncer;
670
+ u: Noncer;
671
+ td: Noncer;
672
+ ts: Labeler;
673
+ bn: NumberPrimitive;
674
+ bd: Noncer;
675
+ }>;
676
+ readonly toSad: (value: Readonly<{
677
+ d: Noncer;
678
+ u: Noncer;
679
+ td: Noncer;
680
+ ts: Labeler;
681
+ bn: NumberPrimitive;
682
+ bd: Noncer;
683
+ }>) => Readonly<{
684
+ d: string;
685
+ u: string;
686
+ td: string;
687
+ ts: string;
688
+ bn: string;
689
+ bd: string;
690
+ }>;
691
+ readonly name: string;
692
+ readonly fields: readonly ["d", "u", "td", "ts", "bn", "bd"];
693
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
694
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
695
+ ipn: string | null;
696
+ }>>>;
697
+ readonly coden: StructingCoden;
698
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer]) => Readonly<{
699
+ d: Noncer;
700
+ u: Noncer;
701
+ td: Noncer;
702
+ ts: Labeler;
703
+ bn: NumberPrimitive;
704
+ bd: Noncer;
705
+ }>;
706
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
707
+ d: Noncer;
708
+ u: Noncer;
709
+ td: Noncer;
710
+ ts: Labeler;
711
+ bn: NumberPrimitive;
712
+ bd: Noncer;
713
+ }>;
714
+ readonly toTuple: (value: Readonly<{
715
+ d: Noncer;
716
+ u: Noncer;
717
+ td: Noncer;
718
+ ts: Labeler;
719
+ bn: NumberPrimitive;
720
+ bd: Noncer;
721
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer];
722
+ readonly toCrew: (value: Readonly<{
723
+ d: Noncer;
724
+ u: Noncer;
725
+ td: Noncer;
726
+ ts: Labeler;
727
+ bn: NumberPrimitive;
728
+ bd: Noncer;
729
+ }>) => Readonly<{
730
+ d: string;
731
+ u: string;
732
+ td: string;
733
+ ts: string;
734
+ bn: string;
735
+ bd: string;
736
+ }>;
737
+ readonly qb64: (value: Readonly<{
738
+ d: Noncer;
739
+ u: Noncer;
740
+ td: Noncer;
741
+ ts: Labeler;
742
+ bn: NumberPrimitive;
743
+ bd: Noncer;
744
+ }>) => string;
745
+ readonly qb64b: (value: Readonly<{
746
+ d: Noncer;
747
+ u: Noncer;
748
+ td: Noncer;
749
+ ts: Labeler;
750
+ bn: NumberPrimitive;
751
+ bd: Noncer;
752
+ }>) => Uint8Array;
753
+ readonly qb2: (value: Readonly<{
754
+ d: Noncer;
755
+ u: Noncer;
756
+ td: Noncer;
757
+ ts: Labeler;
758
+ bn: NumberPrimitive;
759
+ bd: Noncer;
760
+ }>) => Uint8Array;
761
+ }>;
762
+ /**
763
+ * Typed-media fixed-field value (`d`, `u`, `mt`, `mv`).
764
+ *
765
+ * Maintainer model:
766
+ * - the field names stay KERIpy-exact
767
+ * - callers read primitive projections directly from the fields
768
+ * - `mt` carries the media-type label
769
+ * - `mv` carries the associated media value/payload text
770
+ *
771
+ * Counter family:
772
+ * - `TypedMediaQuadruples`
773
+ */
774
+ export type TypeMedia = Readonly<{
775
+ d: Noncer;
776
+ u: Noncer;
777
+ mt: Labeler;
778
+ mv: Texter;
779
+ }>;
780
+ export declare const TypeMedia: Readonly<{
781
+ readonly isSad: (value: unknown) => value is Readonly<{
782
+ d: string;
783
+ u: string;
784
+ mt: string;
785
+ mv: string;
786
+ }>;
787
+ readonly fromSad: (value: Readonly<{
788
+ d: string;
789
+ u: string;
790
+ mt: string;
791
+ mv: string;
792
+ }>) => Readonly<{
793
+ d: Noncer;
794
+ u: Noncer;
795
+ mt: Labeler;
796
+ mv: Texter;
797
+ }>;
798
+ readonly toSad: (value: Readonly<{
799
+ d: Noncer;
800
+ u: Noncer;
801
+ mt: Labeler;
802
+ mv: Texter;
803
+ }>) => Readonly<{
804
+ d: string;
805
+ u: string;
806
+ mt: string;
807
+ mv: string;
808
+ }>;
809
+ readonly name: string;
810
+ readonly fields: readonly ["d", "u", "mt", "mv"];
811
+ readonly cast: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
812
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
813
+ ipn: string | null;
814
+ }>>>;
815
+ readonly coden: StructingCoden;
816
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Labeler, Texter]) => Readonly<{
817
+ d: Noncer;
818
+ u: Noncer;
819
+ mt: Labeler;
820
+ mv: Texter;
821
+ }>;
822
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
823
+ d: Noncer;
824
+ u: Noncer;
825
+ mt: Labeler;
826
+ mv: Texter;
827
+ }>;
828
+ readonly toTuple: (value: Readonly<{
829
+ d: Noncer;
830
+ u: Noncer;
831
+ mt: Labeler;
832
+ mv: Texter;
833
+ }>) => readonly [Noncer, Noncer, Labeler, Texter];
834
+ readonly toCrew: (value: Readonly<{
835
+ d: Noncer;
836
+ u: Noncer;
837
+ mt: Labeler;
838
+ mv: Texter;
839
+ }>) => Readonly<{
840
+ d: string;
841
+ u: string;
842
+ mt: string;
843
+ mv: string;
844
+ }>;
845
+ readonly qb64: (value: Readonly<{
846
+ d: Noncer;
847
+ u: Noncer;
848
+ mt: Labeler;
849
+ mv: Texter;
850
+ }>) => string;
851
+ readonly qb64b: (value: Readonly<{
852
+ d: Noncer;
853
+ u: Noncer;
854
+ mt: Labeler;
855
+ mv: Texter;
856
+ }>) => Uint8Array;
857
+ readonly qb2: (value: Readonly<{
858
+ d: Noncer;
859
+ u: Noncer;
860
+ mt: Labeler;
861
+ mv: Texter;
862
+ }>) => Uint8Array;
863
+ }>;
864
+ /** Empty clan registry placeholder retained for KERIpy naming familiarity. */
865
+ export declare const EmptyClanDom: Readonly<{}>;
866
+ /** Empty cast registry placeholder retained for KERIpy naming familiarity. */
867
+ export declare const EmptyCastDom: Readonly<{}>;
868
+ /** KERIpy alias for `EmptyClanDom`. */
869
+ export declare const EClanDom: Readonly<{}>;
870
+ /** KERIpy alias for `EmptyCastDom`. */
871
+ export declare const ECastDom: Readonly<{}>;
872
+ /** Seal-struct clan registry (`SealDigest` through `SealKind`). */
873
+ export declare const SealClanDom: Readonly<{
874
+ readonly SealDigest: Readonly<{
875
+ readonly isSad: (value: unknown) => value is Readonly<{
876
+ d: string;
877
+ }>;
878
+ readonly fromSad: (value: Readonly<{
879
+ d: string;
880
+ }>) => Readonly<{
881
+ d: Diger;
882
+ }>;
883
+ readonly toSad: (value: Readonly<{
884
+ d: Diger;
885
+ }>) => Readonly<{
886
+ d: string;
887
+ }>;
888
+ readonly name: string;
889
+ readonly fields: readonly ["d"];
890
+ readonly cast: Readonly<Record<"d", Readonly<{
891
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
892
+ ipn: string | null;
893
+ }>>>;
894
+ readonly coden: StructingCoden;
895
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
896
+ d: Diger;
897
+ }>;
898
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
899
+ d: Diger;
900
+ }>;
901
+ readonly toTuple: (value: Readonly<{
902
+ d: Diger;
903
+ }>) => readonly [Diger];
904
+ readonly toCrew: (value: Readonly<{
905
+ d: Diger;
906
+ }>) => Readonly<{
907
+ d: string;
908
+ }>;
909
+ readonly qb64: (value: Readonly<{
910
+ d: Diger;
911
+ }>) => string;
912
+ readonly qb64b: (value: Readonly<{
913
+ d: Diger;
914
+ }>) => Uint8Array;
915
+ readonly qb2: (value: Readonly<{
916
+ d: Diger;
917
+ }>) => Uint8Array;
918
+ }>;
919
+ readonly SealRoot: Readonly<{
920
+ readonly isSad: (value: unknown) => value is Readonly<{
921
+ rd: string;
922
+ }>;
923
+ readonly fromSad: (value: Readonly<{
924
+ rd: string;
925
+ }>) => Readonly<{
926
+ rd: Diger;
927
+ }>;
928
+ readonly toSad: (value: Readonly<{
929
+ rd: Diger;
930
+ }>) => Readonly<{
931
+ rd: string;
932
+ }>;
933
+ readonly name: string;
934
+ readonly fields: readonly ["rd"];
935
+ readonly cast: Readonly<Record<"rd", Readonly<{
936
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
937
+ ipn: string | null;
938
+ }>>>;
939
+ readonly coden: StructingCoden;
940
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
941
+ rd: Diger;
942
+ }>;
943
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
944
+ rd: Diger;
945
+ }>;
946
+ readonly toTuple: (value: Readonly<{
947
+ rd: Diger;
948
+ }>) => readonly [Diger];
949
+ readonly toCrew: (value: Readonly<{
950
+ rd: Diger;
951
+ }>) => Readonly<{
952
+ rd: string;
953
+ }>;
954
+ readonly qb64: (value: Readonly<{
955
+ rd: Diger;
956
+ }>) => string;
957
+ readonly qb64b: (value: Readonly<{
958
+ rd: Diger;
959
+ }>) => Uint8Array;
960
+ readonly qb2: (value: Readonly<{
961
+ rd: Diger;
962
+ }>) => Uint8Array;
963
+ }>;
964
+ readonly SealSource: Readonly<{
965
+ readonly isSad: (value: unknown) => value is Readonly<{
966
+ s: string;
967
+ d: string;
968
+ }>;
969
+ readonly fromSad: (value: Readonly<{
970
+ s: string;
971
+ d: string;
972
+ }>) => Readonly<{
973
+ s: NumberPrimitive;
974
+ d: Diger;
975
+ }>;
976
+ readonly toSad: (value: Readonly<{
977
+ s: NumberPrimitive;
978
+ d: Diger;
979
+ }>) => Readonly<{
980
+ s: string;
981
+ d: string;
982
+ }>;
983
+ readonly name: string;
984
+ readonly fields: readonly ["s", "d"];
985
+ readonly cast: Readonly<Record<"d" | "s", Readonly<{
986
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
987
+ ipn: string | null;
988
+ }>>>;
989
+ readonly coden: StructingCoden;
990
+ readonly fromTuple: (tuple: readonly [NumberPrimitive, Diger]) => Readonly<{
991
+ s: NumberPrimitive;
992
+ d: Diger;
993
+ }>;
994
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
995
+ s: NumberPrimitive;
996
+ d: Diger;
997
+ }>;
998
+ readonly toTuple: (value: Readonly<{
999
+ s: NumberPrimitive;
1000
+ d: Diger;
1001
+ }>) => readonly [NumberPrimitive, Diger];
1002
+ readonly toCrew: (value: Readonly<{
1003
+ s: NumberPrimitive;
1004
+ d: Diger;
1005
+ }>) => Readonly<{
1006
+ s: string;
1007
+ d: string;
1008
+ }>;
1009
+ readonly qb64: (value: Readonly<{
1010
+ s: NumberPrimitive;
1011
+ d: Diger;
1012
+ }>) => string;
1013
+ readonly qb64b: (value: Readonly<{
1014
+ s: NumberPrimitive;
1015
+ d: Diger;
1016
+ }>) => Uint8Array;
1017
+ readonly qb2: (value: Readonly<{
1018
+ s: NumberPrimitive;
1019
+ d: Diger;
1020
+ }>) => Uint8Array;
1021
+ }>;
1022
+ readonly SealEvent: Readonly<{
1023
+ readonly isSad: (value: unknown) => value is Readonly<{
1024
+ i: string;
1025
+ s: string;
1026
+ d: string;
1027
+ }>;
1028
+ readonly fromSad: (value: Readonly<{
1029
+ i: string;
1030
+ s: string;
1031
+ d: string;
1032
+ }>) => Readonly<{
1033
+ i: Prefixer;
1034
+ s: NumberPrimitive;
1035
+ d: Diger;
1036
+ }>;
1037
+ readonly toSad: (value: Readonly<{
1038
+ i: Prefixer;
1039
+ s: NumberPrimitive;
1040
+ d: Diger;
1041
+ }>) => Readonly<{
1042
+ i: string;
1043
+ s: string;
1044
+ d: string;
1045
+ }>;
1046
+ readonly name: string;
1047
+ readonly fields: readonly ["i", "s", "d"];
1048
+ readonly cast: Readonly<Record<"d" | "s" | "i", Readonly<{
1049
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1050
+ ipn: string | null;
1051
+ }>>>;
1052
+ readonly coden: StructingCoden;
1053
+ readonly fromTuple: (tuple: readonly [Prefixer, NumberPrimitive, Diger]) => Readonly<{
1054
+ i: Prefixer;
1055
+ s: NumberPrimitive;
1056
+ d: Diger;
1057
+ }>;
1058
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b]) => Readonly<{
1059
+ i: Prefixer;
1060
+ s: NumberPrimitive;
1061
+ d: Diger;
1062
+ }>;
1063
+ readonly toTuple: (value: Readonly<{
1064
+ i: Prefixer;
1065
+ s: NumberPrimitive;
1066
+ d: Diger;
1067
+ }>) => readonly [Prefixer, NumberPrimitive, Diger];
1068
+ readonly toCrew: (value: Readonly<{
1069
+ i: Prefixer;
1070
+ s: NumberPrimitive;
1071
+ d: Diger;
1072
+ }>) => Readonly<{
1073
+ i: string;
1074
+ s: string;
1075
+ d: string;
1076
+ }>;
1077
+ readonly qb64: (value: Readonly<{
1078
+ i: Prefixer;
1079
+ s: NumberPrimitive;
1080
+ d: Diger;
1081
+ }>) => string;
1082
+ readonly qb64b: (value: Readonly<{
1083
+ i: Prefixer;
1084
+ s: NumberPrimitive;
1085
+ d: Diger;
1086
+ }>) => Uint8Array;
1087
+ readonly qb2: (value: Readonly<{
1088
+ i: Prefixer;
1089
+ s: NumberPrimitive;
1090
+ d: Diger;
1091
+ }>) => Uint8Array;
1092
+ }>;
1093
+ readonly SealLast: Readonly<{
1094
+ readonly isSad: (value: unknown) => value is Readonly<{
1095
+ i: string;
1096
+ }>;
1097
+ readonly fromSad: (value: Readonly<{
1098
+ i: string;
1099
+ }>) => Readonly<{
1100
+ i: Prefixer;
1101
+ }>;
1102
+ readonly toSad: (value: Readonly<{
1103
+ i: Prefixer;
1104
+ }>) => Readonly<{
1105
+ i: string;
1106
+ }>;
1107
+ readonly name: string;
1108
+ readonly fields: readonly ["i"];
1109
+ readonly cast: Readonly<Record<"i", Readonly<{
1110
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1111
+ ipn: string | null;
1112
+ }>>>;
1113
+ readonly coden: StructingCoden;
1114
+ readonly fromTuple: (tuple: readonly [Prefixer]) => Readonly<{
1115
+ i: Prefixer;
1116
+ }>;
1117
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
1118
+ i: Prefixer;
1119
+ }>;
1120
+ readonly toTuple: (value: Readonly<{
1121
+ i: Prefixer;
1122
+ }>) => readonly [Prefixer];
1123
+ readonly toCrew: (value: Readonly<{
1124
+ i: Prefixer;
1125
+ }>) => Readonly<{
1126
+ i: string;
1127
+ }>;
1128
+ readonly qb64: (value: Readonly<{
1129
+ i: Prefixer;
1130
+ }>) => string;
1131
+ readonly qb64b: (value: Readonly<{
1132
+ i: Prefixer;
1133
+ }>) => Uint8Array;
1134
+ readonly qb2: (value: Readonly<{
1135
+ i: Prefixer;
1136
+ }>) => Uint8Array;
1137
+ }>;
1138
+ readonly SealBack: Readonly<{
1139
+ readonly isSad: (value: unknown) => value is Readonly<{
1140
+ bi: string;
1141
+ d: string;
1142
+ }>;
1143
+ readonly fromSad: (value: Readonly<{
1144
+ bi: string;
1145
+ d: string;
1146
+ }>) => Readonly<{
1147
+ bi: Prefixer;
1148
+ d: Diger;
1149
+ }>;
1150
+ readonly toSad: (value: Readonly<{
1151
+ bi: Prefixer;
1152
+ d: Diger;
1153
+ }>) => Readonly<{
1154
+ bi: string;
1155
+ d: string;
1156
+ }>;
1157
+ readonly name: string;
1158
+ readonly fields: readonly ["bi", "d"];
1159
+ readonly cast: Readonly<Record<"d" | "bi", Readonly<{
1160
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1161
+ ipn: string | null;
1162
+ }>>>;
1163
+ readonly coden: StructingCoden;
1164
+ readonly fromTuple: (tuple: readonly [Prefixer, Diger]) => Readonly<{
1165
+ bi: Prefixer;
1166
+ d: Diger;
1167
+ }>;
1168
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
1169
+ bi: Prefixer;
1170
+ d: Diger;
1171
+ }>;
1172
+ readonly toTuple: (value: Readonly<{
1173
+ bi: Prefixer;
1174
+ d: Diger;
1175
+ }>) => readonly [Prefixer, Diger];
1176
+ readonly toCrew: (value: Readonly<{
1177
+ bi: Prefixer;
1178
+ d: Diger;
1179
+ }>) => Readonly<{
1180
+ bi: string;
1181
+ d: string;
1182
+ }>;
1183
+ readonly qb64: (value: Readonly<{
1184
+ bi: Prefixer;
1185
+ d: Diger;
1186
+ }>) => string;
1187
+ readonly qb64b: (value: Readonly<{
1188
+ bi: Prefixer;
1189
+ d: Diger;
1190
+ }>) => Uint8Array;
1191
+ readonly qb2: (value: Readonly<{
1192
+ bi: Prefixer;
1193
+ d: Diger;
1194
+ }>) => Uint8Array;
1195
+ }>;
1196
+ readonly SealKind: Readonly<{
1197
+ readonly isSad: (value: unknown) => value is Readonly<{
1198
+ t: string;
1199
+ d: string;
1200
+ }>;
1201
+ readonly fromSad: (value: Readonly<{
1202
+ t: string;
1203
+ d: string;
1204
+ }>) => Readonly<{
1205
+ t: Verser;
1206
+ d: Diger;
1207
+ }>;
1208
+ readonly toSad: (value: Readonly<{
1209
+ t: Verser;
1210
+ d: Diger;
1211
+ }>) => Readonly<{
1212
+ t: string;
1213
+ d: string;
1214
+ }>;
1215
+ readonly name: string;
1216
+ readonly fields: readonly ["t", "d"];
1217
+ readonly cast: Readonly<Record<"d" | "t", Readonly<{
1218
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1219
+ ipn: string | null;
1220
+ }>>>;
1221
+ readonly coden: StructingCoden;
1222
+ readonly fromTuple: (tuple: readonly [Verser, Diger]) => Readonly<{
1223
+ t: Verser;
1224
+ d: Diger;
1225
+ }>;
1226
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
1227
+ t: Verser;
1228
+ d: Diger;
1229
+ }>;
1230
+ readonly toTuple: (value: Readonly<{
1231
+ t: Verser;
1232
+ d: Diger;
1233
+ }>) => readonly [Verser, Diger];
1234
+ readonly toCrew: (value: Readonly<{
1235
+ t: Verser;
1236
+ d: Diger;
1237
+ }>) => Readonly<{
1238
+ t: string;
1239
+ d: string;
1240
+ }>;
1241
+ readonly qb64: (value: Readonly<{
1242
+ t: Verser;
1243
+ d: Diger;
1244
+ }>) => string;
1245
+ readonly qb64b: (value: Readonly<{
1246
+ t: Verser;
1247
+ d: Diger;
1248
+ }>) => Uint8Array;
1249
+ readonly qb2: (value: Readonly<{
1250
+ t: Verser;
1251
+ d: Diger;
1252
+ }>) => Uint8Array;
1253
+ }>;
1254
+ }>;
1255
+ /** KERIpy alias for `SealClanDom`. */
1256
+ export declare const SClanDom: Readonly<{
1257
+ readonly SealDigest: Readonly<{
1258
+ readonly isSad: (value: unknown) => value is Readonly<{
1259
+ d: string;
1260
+ }>;
1261
+ readonly fromSad: (value: Readonly<{
1262
+ d: string;
1263
+ }>) => Readonly<{
1264
+ d: Diger;
1265
+ }>;
1266
+ readonly toSad: (value: Readonly<{
1267
+ d: Diger;
1268
+ }>) => Readonly<{
1269
+ d: string;
1270
+ }>;
1271
+ readonly name: string;
1272
+ readonly fields: readonly ["d"];
1273
+ readonly cast: Readonly<Record<"d", Readonly<{
1274
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1275
+ ipn: string | null;
1276
+ }>>>;
1277
+ readonly coden: StructingCoden;
1278
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
1279
+ d: Diger;
1280
+ }>;
1281
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
1282
+ d: Diger;
1283
+ }>;
1284
+ readonly toTuple: (value: Readonly<{
1285
+ d: Diger;
1286
+ }>) => readonly [Diger];
1287
+ readonly toCrew: (value: Readonly<{
1288
+ d: Diger;
1289
+ }>) => Readonly<{
1290
+ d: string;
1291
+ }>;
1292
+ readonly qb64: (value: Readonly<{
1293
+ d: Diger;
1294
+ }>) => string;
1295
+ readonly qb64b: (value: Readonly<{
1296
+ d: Diger;
1297
+ }>) => Uint8Array;
1298
+ readonly qb2: (value: Readonly<{
1299
+ d: Diger;
1300
+ }>) => Uint8Array;
1301
+ }>;
1302
+ readonly SealRoot: Readonly<{
1303
+ readonly isSad: (value: unknown) => value is Readonly<{
1304
+ rd: string;
1305
+ }>;
1306
+ readonly fromSad: (value: Readonly<{
1307
+ rd: string;
1308
+ }>) => Readonly<{
1309
+ rd: Diger;
1310
+ }>;
1311
+ readonly toSad: (value: Readonly<{
1312
+ rd: Diger;
1313
+ }>) => Readonly<{
1314
+ rd: string;
1315
+ }>;
1316
+ readonly name: string;
1317
+ readonly fields: readonly ["rd"];
1318
+ readonly cast: Readonly<Record<"rd", Readonly<{
1319
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1320
+ ipn: string | null;
1321
+ }>>>;
1322
+ readonly coden: StructingCoden;
1323
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
1324
+ rd: Diger;
1325
+ }>;
1326
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
1327
+ rd: Diger;
1328
+ }>;
1329
+ readonly toTuple: (value: Readonly<{
1330
+ rd: Diger;
1331
+ }>) => readonly [Diger];
1332
+ readonly toCrew: (value: Readonly<{
1333
+ rd: Diger;
1334
+ }>) => Readonly<{
1335
+ rd: string;
1336
+ }>;
1337
+ readonly qb64: (value: Readonly<{
1338
+ rd: Diger;
1339
+ }>) => string;
1340
+ readonly qb64b: (value: Readonly<{
1341
+ rd: Diger;
1342
+ }>) => Uint8Array;
1343
+ readonly qb2: (value: Readonly<{
1344
+ rd: Diger;
1345
+ }>) => Uint8Array;
1346
+ }>;
1347
+ readonly SealSource: Readonly<{
1348
+ readonly isSad: (value: unknown) => value is Readonly<{
1349
+ s: string;
1350
+ d: string;
1351
+ }>;
1352
+ readonly fromSad: (value: Readonly<{
1353
+ s: string;
1354
+ d: string;
1355
+ }>) => Readonly<{
1356
+ s: NumberPrimitive;
1357
+ d: Diger;
1358
+ }>;
1359
+ readonly toSad: (value: Readonly<{
1360
+ s: NumberPrimitive;
1361
+ d: Diger;
1362
+ }>) => Readonly<{
1363
+ s: string;
1364
+ d: string;
1365
+ }>;
1366
+ readonly name: string;
1367
+ readonly fields: readonly ["s", "d"];
1368
+ readonly cast: Readonly<Record<"d" | "s", Readonly<{
1369
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1370
+ ipn: string | null;
1371
+ }>>>;
1372
+ readonly coden: StructingCoden;
1373
+ readonly fromTuple: (tuple: readonly [NumberPrimitive, Diger]) => Readonly<{
1374
+ s: NumberPrimitive;
1375
+ d: Diger;
1376
+ }>;
1377
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
1378
+ s: NumberPrimitive;
1379
+ d: Diger;
1380
+ }>;
1381
+ readonly toTuple: (value: Readonly<{
1382
+ s: NumberPrimitive;
1383
+ d: Diger;
1384
+ }>) => readonly [NumberPrimitive, Diger];
1385
+ readonly toCrew: (value: Readonly<{
1386
+ s: NumberPrimitive;
1387
+ d: Diger;
1388
+ }>) => Readonly<{
1389
+ s: string;
1390
+ d: string;
1391
+ }>;
1392
+ readonly qb64: (value: Readonly<{
1393
+ s: NumberPrimitive;
1394
+ d: Diger;
1395
+ }>) => string;
1396
+ readonly qb64b: (value: Readonly<{
1397
+ s: NumberPrimitive;
1398
+ d: Diger;
1399
+ }>) => Uint8Array;
1400
+ readonly qb2: (value: Readonly<{
1401
+ s: NumberPrimitive;
1402
+ d: Diger;
1403
+ }>) => Uint8Array;
1404
+ }>;
1405
+ readonly SealEvent: Readonly<{
1406
+ readonly isSad: (value: unknown) => value is Readonly<{
1407
+ i: string;
1408
+ s: string;
1409
+ d: string;
1410
+ }>;
1411
+ readonly fromSad: (value: Readonly<{
1412
+ i: string;
1413
+ s: string;
1414
+ d: string;
1415
+ }>) => Readonly<{
1416
+ i: Prefixer;
1417
+ s: NumberPrimitive;
1418
+ d: Diger;
1419
+ }>;
1420
+ readonly toSad: (value: Readonly<{
1421
+ i: Prefixer;
1422
+ s: NumberPrimitive;
1423
+ d: Diger;
1424
+ }>) => Readonly<{
1425
+ i: string;
1426
+ s: string;
1427
+ d: string;
1428
+ }>;
1429
+ readonly name: string;
1430
+ readonly fields: readonly ["i", "s", "d"];
1431
+ readonly cast: Readonly<Record<"d" | "s" | "i", Readonly<{
1432
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1433
+ ipn: string | null;
1434
+ }>>>;
1435
+ readonly coden: StructingCoden;
1436
+ readonly fromTuple: (tuple: readonly [Prefixer, NumberPrimitive, Diger]) => Readonly<{
1437
+ i: Prefixer;
1438
+ s: NumberPrimitive;
1439
+ d: Diger;
1440
+ }>;
1441
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b]) => Readonly<{
1442
+ i: Prefixer;
1443
+ s: NumberPrimitive;
1444
+ d: Diger;
1445
+ }>;
1446
+ readonly toTuple: (value: Readonly<{
1447
+ i: Prefixer;
1448
+ s: NumberPrimitive;
1449
+ d: Diger;
1450
+ }>) => readonly [Prefixer, NumberPrimitive, Diger];
1451
+ readonly toCrew: (value: Readonly<{
1452
+ i: Prefixer;
1453
+ s: NumberPrimitive;
1454
+ d: Diger;
1455
+ }>) => Readonly<{
1456
+ i: string;
1457
+ s: string;
1458
+ d: string;
1459
+ }>;
1460
+ readonly qb64: (value: Readonly<{
1461
+ i: Prefixer;
1462
+ s: NumberPrimitive;
1463
+ d: Diger;
1464
+ }>) => string;
1465
+ readonly qb64b: (value: Readonly<{
1466
+ i: Prefixer;
1467
+ s: NumberPrimitive;
1468
+ d: Diger;
1469
+ }>) => Uint8Array;
1470
+ readonly qb2: (value: Readonly<{
1471
+ i: Prefixer;
1472
+ s: NumberPrimitive;
1473
+ d: Diger;
1474
+ }>) => Uint8Array;
1475
+ }>;
1476
+ readonly SealLast: Readonly<{
1477
+ readonly isSad: (value: unknown) => value is Readonly<{
1478
+ i: string;
1479
+ }>;
1480
+ readonly fromSad: (value: Readonly<{
1481
+ i: string;
1482
+ }>) => Readonly<{
1483
+ i: Prefixer;
1484
+ }>;
1485
+ readonly toSad: (value: Readonly<{
1486
+ i: Prefixer;
1487
+ }>) => Readonly<{
1488
+ i: string;
1489
+ }>;
1490
+ readonly name: string;
1491
+ readonly fields: readonly ["i"];
1492
+ readonly cast: Readonly<Record<"i", Readonly<{
1493
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1494
+ ipn: string | null;
1495
+ }>>>;
1496
+ readonly coden: StructingCoden;
1497
+ readonly fromTuple: (tuple: readonly [Prefixer]) => Readonly<{
1498
+ i: Prefixer;
1499
+ }>;
1500
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
1501
+ i: Prefixer;
1502
+ }>;
1503
+ readonly toTuple: (value: Readonly<{
1504
+ i: Prefixer;
1505
+ }>) => readonly [Prefixer];
1506
+ readonly toCrew: (value: Readonly<{
1507
+ i: Prefixer;
1508
+ }>) => Readonly<{
1509
+ i: string;
1510
+ }>;
1511
+ readonly qb64: (value: Readonly<{
1512
+ i: Prefixer;
1513
+ }>) => string;
1514
+ readonly qb64b: (value: Readonly<{
1515
+ i: Prefixer;
1516
+ }>) => Uint8Array;
1517
+ readonly qb2: (value: Readonly<{
1518
+ i: Prefixer;
1519
+ }>) => Uint8Array;
1520
+ }>;
1521
+ readonly SealBack: Readonly<{
1522
+ readonly isSad: (value: unknown) => value is Readonly<{
1523
+ bi: string;
1524
+ d: string;
1525
+ }>;
1526
+ readonly fromSad: (value: Readonly<{
1527
+ bi: string;
1528
+ d: string;
1529
+ }>) => Readonly<{
1530
+ bi: Prefixer;
1531
+ d: Diger;
1532
+ }>;
1533
+ readonly toSad: (value: Readonly<{
1534
+ bi: Prefixer;
1535
+ d: Diger;
1536
+ }>) => Readonly<{
1537
+ bi: string;
1538
+ d: string;
1539
+ }>;
1540
+ readonly name: string;
1541
+ readonly fields: readonly ["bi", "d"];
1542
+ readonly cast: Readonly<Record<"d" | "bi", Readonly<{
1543
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1544
+ ipn: string | null;
1545
+ }>>>;
1546
+ readonly coden: StructingCoden;
1547
+ readonly fromTuple: (tuple: readonly [Prefixer, Diger]) => Readonly<{
1548
+ bi: Prefixer;
1549
+ d: Diger;
1550
+ }>;
1551
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
1552
+ bi: Prefixer;
1553
+ d: Diger;
1554
+ }>;
1555
+ readonly toTuple: (value: Readonly<{
1556
+ bi: Prefixer;
1557
+ d: Diger;
1558
+ }>) => readonly [Prefixer, Diger];
1559
+ readonly toCrew: (value: Readonly<{
1560
+ bi: Prefixer;
1561
+ d: Diger;
1562
+ }>) => Readonly<{
1563
+ bi: string;
1564
+ d: string;
1565
+ }>;
1566
+ readonly qb64: (value: Readonly<{
1567
+ bi: Prefixer;
1568
+ d: Diger;
1569
+ }>) => string;
1570
+ readonly qb64b: (value: Readonly<{
1571
+ bi: Prefixer;
1572
+ d: Diger;
1573
+ }>) => Uint8Array;
1574
+ readonly qb2: (value: Readonly<{
1575
+ bi: Prefixer;
1576
+ d: Diger;
1577
+ }>) => Uint8Array;
1578
+ }>;
1579
+ readonly SealKind: Readonly<{
1580
+ readonly isSad: (value: unknown) => value is Readonly<{
1581
+ t: string;
1582
+ d: string;
1583
+ }>;
1584
+ readonly fromSad: (value: Readonly<{
1585
+ t: string;
1586
+ d: string;
1587
+ }>) => Readonly<{
1588
+ t: Verser;
1589
+ d: Diger;
1590
+ }>;
1591
+ readonly toSad: (value: Readonly<{
1592
+ t: Verser;
1593
+ d: Diger;
1594
+ }>) => Readonly<{
1595
+ t: string;
1596
+ d: string;
1597
+ }>;
1598
+ readonly name: string;
1599
+ readonly fields: readonly ["t", "d"];
1600
+ readonly cast: Readonly<Record<"d" | "t", Readonly<{
1601
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1602
+ ipn: string | null;
1603
+ }>>>;
1604
+ readonly coden: StructingCoden;
1605
+ readonly fromTuple: (tuple: readonly [Verser, Diger]) => Readonly<{
1606
+ t: Verser;
1607
+ d: Diger;
1608
+ }>;
1609
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
1610
+ t: Verser;
1611
+ d: Diger;
1612
+ }>;
1613
+ readonly toTuple: (value: Readonly<{
1614
+ t: Verser;
1615
+ d: Diger;
1616
+ }>) => readonly [Verser, Diger];
1617
+ readonly toCrew: (value: Readonly<{
1618
+ t: Verser;
1619
+ d: Diger;
1620
+ }>) => Readonly<{
1621
+ t: string;
1622
+ d: string;
1623
+ }>;
1624
+ readonly qb64: (value: Readonly<{
1625
+ t: Verser;
1626
+ d: Diger;
1627
+ }>) => string;
1628
+ readonly qb64b: (value: Readonly<{
1629
+ t: Verser;
1630
+ d: Diger;
1631
+ }>) => Uint8Array;
1632
+ readonly qb2: (value: Readonly<{
1633
+ t: Verser;
1634
+ d: Diger;
1635
+ }>) => Uint8Array;
1636
+ }>;
1637
+ }>;
1638
+ /** Seal-struct cast registry keyed by clan name. */
1639
+ export declare const SealCastDom: Readonly<{
1640
+ readonly SealDigest: Readonly<Record<"d", Readonly<{
1641
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1642
+ ipn: string | null;
1643
+ }>>>;
1644
+ readonly SealRoot: Readonly<Record<"rd", Readonly<{
1645
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1646
+ ipn: string | null;
1647
+ }>>>;
1648
+ readonly SealSource: Readonly<Record<"d" | "s", Readonly<{
1649
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1650
+ ipn: string | null;
1651
+ }>>>;
1652
+ readonly SealEvent: Readonly<Record<"d" | "s" | "i", Readonly<{
1653
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1654
+ ipn: string | null;
1655
+ }>>>;
1656
+ readonly SealLast: Readonly<Record<"i", Readonly<{
1657
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1658
+ ipn: string | null;
1659
+ }>>>;
1660
+ readonly SealBack: Readonly<Record<"d" | "bi", Readonly<{
1661
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1662
+ ipn: string | null;
1663
+ }>>>;
1664
+ readonly SealKind: Readonly<Record<"d" | "t", Readonly<{
1665
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1666
+ ipn: string | null;
1667
+ }>>>;
1668
+ }>;
1669
+ /** KERIpy alias for `SealCastDom`. */
1670
+ export declare const SCastDom: Readonly<{
1671
+ readonly SealDigest: Readonly<Record<"d", Readonly<{
1672
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1673
+ ipn: string | null;
1674
+ }>>>;
1675
+ readonly SealRoot: Readonly<Record<"rd", Readonly<{
1676
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1677
+ ipn: string | null;
1678
+ }>>>;
1679
+ readonly SealSource: Readonly<Record<"d" | "s", Readonly<{
1680
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1681
+ ipn: string | null;
1682
+ }>>>;
1683
+ readonly SealEvent: Readonly<Record<"d" | "s" | "i", Readonly<{
1684
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1685
+ ipn: string | null;
1686
+ }>>>;
1687
+ readonly SealLast: Readonly<Record<"i", Readonly<{
1688
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1689
+ ipn: string | null;
1690
+ }>>>;
1691
+ readonly SealBack: Readonly<Record<"d" | "bi", Readonly<{
1692
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1693
+ ipn: string | null;
1694
+ }>>>;
1695
+ readonly SealKind: Readonly<Record<"d" | "t", Readonly<{
1696
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1697
+ ipn: string | null;
1698
+ }>>>;
1699
+ }>;
1700
+ /** Blind-state clan registry (`BlindState`, `BoundState`). */
1701
+ export declare const BlindStateClanDom: Readonly<{
1702
+ readonly BlindState: Readonly<{
1703
+ readonly isSad: (value: unknown) => value is Readonly<{
1704
+ d: string;
1705
+ u: string;
1706
+ td: string;
1707
+ ts: string;
1708
+ }>;
1709
+ readonly fromSad: (value: Readonly<{
1710
+ d: string;
1711
+ u: string;
1712
+ td: string;
1713
+ ts: string;
1714
+ }>) => Readonly<{
1715
+ d: Noncer;
1716
+ u: Noncer;
1717
+ td: Noncer;
1718
+ ts: Labeler;
1719
+ }>;
1720
+ readonly toSad: (value: Readonly<{
1721
+ d: Noncer;
1722
+ u: Noncer;
1723
+ td: Noncer;
1724
+ ts: Labeler;
1725
+ }>) => Readonly<{
1726
+ d: string;
1727
+ u: string;
1728
+ td: string;
1729
+ ts: string;
1730
+ }>;
1731
+ readonly name: string;
1732
+ readonly fields: readonly ["d", "u", "td", "ts"];
1733
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
1734
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1735
+ ipn: string | null;
1736
+ }>>>;
1737
+ readonly coden: StructingCoden;
1738
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler]) => Readonly<{
1739
+ d: Noncer;
1740
+ u: Noncer;
1741
+ td: Noncer;
1742
+ ts: Labeler;
1743
+ }>;
1744
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
1745
+ d: Noncer;
1746
+ u: Noncer;
1747
+ td: Noncer;
1748
+ ts: Labeler;
1749
+ }>;
1750
+ readonly toTuple: (value: Readonly<{
1751
+ d: Noncer;
1752
+ u: Noncer;
1753
+ td: Noncer;
1754
+ ts: Labeler;
1755
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler];
1756
+ readonly toCrew: (value: Readonly<{
1757
+ d: Noncer;
1758
+ u: Noncer;
1759
+ td: Noncer;
1760
+ ts: Labeler;
1761
+ }>) => Readonly<{
1762
+ d: string;
1763
+ u: string;
1764
+ td: string;
1765
+ ts: string;
1766
+ }>;
1767
+ readonly qb64: (value: Readonly<{
1768
+ d: Noncer;
1769
+ u: Noncer;
1770
+ td: Noncer;
1771
+ ts: Labeler;
1772
+ }>) => string;
1773
+ readonly qb64b: (value: Readonly<{
1774
+ d: Noncer;
1775
+ u: Noncer;
1776
+ td: Noncer;
1777
+ ts: Labeler;
1778
+ }>) => Uint8Array;
1779
+ readonly qb2: (value: Readonly<{
1780
+ d: Noncer;
1781
+ u: Noncer;
1782
+ td: Noncer;
1783
+ ts: Labeler;
1784
+ }>) => Uint8Array;
1785
+ }>;
1786
+ readonly BoundState: Readonly<{
1787
+ readonly isSad: (value: unknown) => value is Readonly<{
1788
+ d: string;
1789
+ u: string;
1790
+ td: string;
1791
+ ts: string;
1792
+ bn: string;
1793
+ bd: string;
1794
+ }>;
1795
+ readonly fromSad: (value: Readonly<{
1796
+ d: string;
1797
+ u: string;
1798
+ td: string;
1799
+ ts: string;
1800
+ bn: string;
1801
+ bd: string;
1802
+ }>) => Readonly<{
1803
+ d: Noncer;
1804
+ u: Noncer;
1805
+ td: Noncer;
1806
+ ts: Labeler;
1807
+ bn: NumberPrimitive;
1808
+ bd: Noncer;
1809
+ }>;
1810
+ readonly toSad: (value: Readonly<{
1811
+ d: Noncer;
1812
+ u: Noncer;
1813
+ td: Noncer;
1814
+ ts: Labeler;
1815
+ bn: NumberPrimitive;
1816
+ bd: Noncer;
1817
+ }>) => Readonly<{
1818
+ d: string;
1819
+ u: string;
1820
+ td: string;
1821
+ ts: string;
1822
+ bn: string;
1823
+ bd: string;
1824
+ }>;
1825
+ readonly name: string;
1826
+ readonly fields: readonly ["d", "u", "td", "ts", "bn", "bd"];
1827
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
1828
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1829
+ ipn: string | null;
1830
+ }>>>;
1831
+ readonly coden: StructingCoden;
1832
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer]) => Readonly<{
1833
+ d: Noncer;
1834
+ u: Noncer;
1835
+ td: Noncer;
1836
+ ts: Labeler;
1837
+ bn: NumberPrimitive;
1838
+ bd: Noncer;
1839
+ }>;
1840
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
1841
+ d: Noncer;
1842
+ u: Noncer;
1843
+ td: Noncer;
1844
+ ts: Labeler;
1845
+ bn: NumberPrimitive;
1846
+ bd: Noncer;
1847
+ }>;
1848
+ readonly toTuple: (value: Readonly<{
1849
+ d: Noncer;
1850
+ u: Noncer;
1851
+ td: Noncer;
1852
+ ts: Labeler;
1853
+ bn: NumberPrimitive;
1854
+ bd: Noncer;
1855
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer];
1856
+ readonly toCrew: (value: Readonly<{
1857
+ d: Noncer;
1858
+ u: Noncer;
1859
+ td: Noncer;
1860
+ ts: Labeler;
1861
+ bn: NumberPrimitive;
1862
+ bd: Noncer;
1863
+ }>) => Readonly<{
1864
+ d: string;
1865
+ u: string;
1866
+ td: string;
1867
+ ts: string;
1868
+ bn: string;
1869
+ bd: string;
1870
+ }>;
1871
+ readonly qb64: (value: Readonly<{
1872
+ d: Noncer;
1873
+ u: Noncer;
1874
+ td: Noncer;
1875
+ ts: Labeler;
1876
+ bn: NumberPrimitive;
1877
+ bd: Noncer;
1878
+ }>) => string;
1879
+ readonly qb64b: (value: Readonly<{
1880
+ d: Noncer;
1881
+ u: Noncer;
1882
+ td: Noncer;
1883
+ ts: Labeler;
1884
+ bn: NumberPrimitive;
1885
+ bd: Noncer;
1886
+ }>) => Uint8Array;
1887
+ readonly qb2: (value: Readonly<{
1888
+ d: Noncer;
1889
+ u: Noncer;
1890
+ td: Noncer;
1891
+ ts: Labeler;
1892
+ bn: NumberPrimitive;
1893
+ bd: Noncer;
1894
+ }>) => Uint8Array;
1895
+ }>;
1896
+ }>;
1897
+ /** KERIpy alias for `BlindStateClanDom`. */
1898
+ export declare const BSClanDom: Readonly<{
1899
+ readonly BlindState: Readonly<{
1900
+ readonly isSad: (value: unknown) => value is Readonly<{
1901
+ d: string;
1902
+ u: string;
1903
+ td: string;
1904
+ ts: string;
1905
+ }>;
1906
+ readonly fromSad: (value: Readonly<{
1907
+ d: string;
1908
+ u: string;
1909
+ td: string;
1910
+ ts: string;
1911
+ }>) => Readonly<{
1912
+ d: Noncer;
1913
+ u: Noncer;
1914
+ td: Noncer;
1915
+ ts: Labeler;
1916
+ }>;
1917
+ readonly toSad: (value: Readonly<{
1918
+ d: Noncer;
1919
+ u: Noncer;
1920
+ td: Noncer;
1921
+ ts: Labeler;
1922
+ }>) => Readonly<{
1923
+ d: string;
1924
+ u: string;
1925
+ td: string;
1926
+ ts: string;
1927
+ }>;
1928
+ readonly name: string;
1929
+ readonly fields: readonly ["d", "u", "td", "ts"];
1930
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
1931
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
1932
+ ipn: string | null;
1933
+ }>>>;
1934
+ readonly coden: StructingCoden;
1935
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler]) => Readonly<{
1936
+ d: Noncer;
1937
+ u: Noncer;
1938
+ td: Noncer;
1939
+ ts: Labeler;
1940
+ }>;
1941
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
1942
+ d: Noncer;
1943
+ u: Noncer;
1944
+ td: Noncer;
1945
+ ts: Labeler;
1946
+ }>;
1947
+ readonly toTuple: (value: Readonly<{
1948
+ d: Noncer;
1949
+ u: Noncer;
1950
+ td: Noncer;
1951
+ ts: Labeler;
1952
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler];
1953
+ readonly toCrew: (value: Readonly<{
1954
+ d: Noncer;
1955
+ u: Noncer;
1956
+ td: Noncer;
1957
+ ts: Labeler;
1958
+ }>) => Readonly<{
1959
+ d: string;
1960
+ u: string;
1961
+ td: string;
1962
+ ts: string;
1963
+ }>;
1964
+ readonly qb64: (value: Readonly<{
1965
+ d: Noncer;
1966
+ u: Noncer;
1967
+ td: Noncer;
1968
+ ts: Labeler;
1969
+ }>) => string;
1970
+ readonly qb64b: (value: Readonly<{
1971
+ d: Noncer;
1972
+ u: Noncer;
1973
+ td: Noncer;
1974
+ ts: Labeler;
1975
+ }>) => Uint8Array;
1976
+ readonly qb2: (value: Readonly<{
1977
+ d: Noncer;
1978
+ u: Noncer;
1979
+ td: Noncer;
1980
+ ts: Labeler;
1981
+ }>) => Uint8Array;
1982
+ }>;
1983
+ readonly BoundState: Readonly<{
1984
+ readonly isSad: (value: unknown) => value is Readonly<{
1985
+ d: string;
1986
+ u: string;
1987
+ td: string;
1988
+ ts: string;
1989
+ bn: string;
1990
+ bd: string;
1991
+ }>;
1992
+ readonly fromSad: (value: Readonly<{
1993
+ d: string;
1994
+ u: string;
1995
+ td: string;
1996
+ ts: string;
1997
+ bn: string;
1998
+ bd: string;
1999
+ }>) => Readonly<{
2000
+ d: Noncer;
2001
+ u: Noncer;
2002
+ td: Noncer;
2003
+ ts: Labeler;
2004
+ bn: NumberPrimitive;
2005
+ bd: Noncer;
2006
+ }>;
2007
+ readonly toSad: (value: Readonly<{
2008
+ d: Noncer;
2009
+ u: Noncer;
2010
+ td: Noncer;
2011
+ ts: Labeler;
2012
+ bn: NumberPrimitive;
2013
+ bd: Noncer;
2014
+ }>) => Readonly<{
2015
+ d: string;
2016
+ u: string;
2017
+ td: string;
2018
+ ts: string;
2019
+ bn: string;
2020
+ bd: string;
2021
+ }>;
2022
+ readonly name: string;
2023
+ readonly fields: readonly ["d", "u", "td", "ts", "bn", "bd"];
2024
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
2025
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2026
+ ipn: string | null;
2027
+ }>>>;
2028
+ readonly coden: StructingCoden;
2029
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer]) => Readonly<{
2030
+ d: Noncer;
2031
+ u: Noncer;
2032
+ td: Noncer;
2033
+ ts: Labeler;
2034
+ bn: NumberPrimitive;
2035
+ bd: Noncer;
2036
+ }>;
2037
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
2038
+ d: Noncer;
2039
+ u: Noncer;
2040
+ td: Noncer;
2041
+ ts: Labeler;
2042
+ bn: NumberPrimitive;
2043
+ bd: Noncer;
2044
+ }>;
2045
+ readonly toTuple: (value: Readonly<{
2046
+ d: Noncer;
2047
+ u: Noncer;
2048
+ td: Noncer;
2049
+ ts: Labeler;
2050
+ bn: NumberPrimitive;
2051
+ bd: Noncer;
2052
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer];
2053
+ readonly toCrew: (value: Readonly<{
2054
+ d: Noncer;
2055
+ u: Noncer;
2056
+ td: Noncer;
2057
+ ts: Labeler;
2058
+ bn: NumberPrimitive;
2059
+ bd: Noncer;
2060
+ }>) => Readonly<{
2061
+ d: string;
2062
+ u: string;
2063
+ td: string;
2064
+ ts: string;
2065
+ bn: string;
2066
+ bd: string;
2067
+ }>;
2068
+ readonly qb64: (value: Readonly<{
2069
+ d: Noncer;
2070
+ u: Noncer;
2071
+ td: Noncer;
2072
+ ts: Labeler;
2073
+ bn: NumberPrimitive;
2074
+ bd: Noncer;
2075
+ }>) => string;
2076
+ readonly qb64b: (value: Readonly<{
2077
+ d: Noncer;
2078
+ u: Noncer;
2079
+ td: Noncer;
2080
+ ts: Labeler;
2081
+ bn: NumberPrimitive;
2082
+ bd: Noncer;
2083
+ }>) => Uint8Array;
2084
+ readonly qb2: (value: Readonly<{
2085
+ d: Noncer;
2086
+ u: Noncer;
2087
+ td: Noncer;
2088
+ ts: Labeler;
2089
+ bn: NumberPrimitive;
2090
+ bd: Noncer;
2091
+ }>) => Uint8Array;
2092
+ }>;
2093
+ }>;
2094
+ /** Blind-state cast registry keyed by clan name. */
2095
+ export declare const BlindStateCastDom: Readonly<{
2096
+ readonly BlindState: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
2097
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2098
+ ipn: string | null;
2099
+ }>>>;
2100
+ readonly BoundState: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
2101
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2102
+ ipn: string | null;
2103
+ }>>>;
2104
+ }>;
2105
+ /** KERIpy alias for `BlindStateCastDom`. */
2106
+ export declare const BSCastDom: Readonly<{
2107
+ readonly BlindState: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
2108
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2109
+ ipn: string | null;
2110
+ }>>>;
2111
+ readonly BoundState: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
2112
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2113
+ ipn: string | null;
2114
+ }>>>;
2115
+ }>;
2116
+ /** Typed-media clan registry (`TypeMedia`). */
2117
+ export declare const TypeMediaClanDom: Readonly<{
2118
+ readonly TypeMedia: Readonly<{
2119
+ readonly isSad: (value: unknown) => value is Readonly<{
2120
+ d: string;
2121
+ u: string;
2122
+ mt: string;
2123
+ mv: string;
2124
+ }>;
2125
+ readonly fromSad: (value: Readonly<{
2126
+ d: string;
2127
+ u: string;
2128
+ mt: string;
2129
+ mv: string;
2130
+ }>) => Readonly<{
2131
+ d: Noncer;
2132
+ u: Noncer;
2133
+ mt: Labeler;
2134
+ mv: Texter;
2135
+ }>;
2136
+ readonly toSad: (value: Readonly<{
2137
+ d: Noncer;
2138
+ u: Noncer;
2139
+ mt: Labeler;
2140
+ mv: Texter;
2141
+ }>) => Readonly<{
2142
+ d: string;
2143
+ u: string;
2144
+ mt: string;
2145
+ mv: string;
2146
+ }>;
2147
+ readonly name: string;
2148
+ readonly fields: readonly ["d", "u", "mt", "mv"];
2149
+ readonly cast: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
2150
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2151
+ ipn: string | null;
2152
+ }>>>;
2153
+ readonly coden: StructingCoden;
2154
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Labeler, Texter]) => Readonly<{
2155
+ d: Noncer;
2156
+ u: Noncer;
2157
+ mt: Labeler;
2158
+ mv: Texter;
2159
+ }>;
2160
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
2161
+ d: Noncer;
2162
+ u: Noncer;
2163
+ mt: Labeler;
2164
+ mv: Texter;
2165
+ }>;
2166
+ readonly toTuple: (value: Readonly<{
2167
+ d: Noncer;
2168
+ u: Noncer;
2169
+ mt: Labeler;
2170
+ mv: Texter;
2171
+ }>) => readonly [Noncer, Noncer, Labeler, Texter];
2172
+ readonly toCrew: (value: Readonly<{
2173
+ d: Noncer;
2174
+ u: Noncer;
2175
+ mt: Labeler;
2176
+ mv: Texter;
2177
+ }>) => Readonly<{
2178
+ d: string;
2179
+ u: string;
2180
+ mt: string;
2181
+ mv: string;
2182
+ }>;
2183
+ readonly qb64: (value: Readonly<{
2184
+ d: Noncer;
2185
+ u: Noncer;
2186
+ mt: Labeler;
2187
+ mv: Texter;
2188
+ }>) => string;
2189
+ readonly qb64b: (value: Readonly<{
2190
+ d: Noncer;
2191
+ u: Noncer;
2192
+ mt: Labeler;
2193
+ mv: Texter;
2194
+ }>) => Uint8Array;
2195
+ readonly qb2: (value: Readonly<{
2196
+ d: Noncer;
2197
+ u: Noncer;
2198
+ mt: Labeler;
2199
+ mv: Texter;
2200
+ }>) => Uint8Array;
2201
+ }>;
2202
+ }>;
2203
+ /** KERIpy alias for `TypeMediaClanDom`. */
2204
+ export declare const TMClanDom: Readonly<{
2205
+ readonly TypeMedia: Readonly<{
2206
+ readonly isSad: (value: unknown) => value is Readonly<{
2207
+ d: string;
2208
+ u: string;
2209
+ mt: string;
2210
+ mv: string;
2211
+ }>;
2212
+ readonly fromSad: (value: Readonly<{
2213
+ d: string;
2214
+ u: string;
2215
+ mt: string;
2216
+ mv: string;
2217
+ }>) => Readonly<{
2218
+ d: Noncer;
2219
+ u: Noncer;
2220
+ mt: Labeler;
2221
+ mv: Texter;
2222
+ }>;
2223
+ readonly toSad: (value: Readonly<{
2224
+ d: Noncer;
2225
+ u: Noncer;
2226
+ mt: Labeler;
2227
+ mv: Texter;
2228
+ }>) => Readonly<{
2229
+ d: string;
2230
+ u: string;
2231
+ mt: string;
2232
+ mv: string;
2233
+ }>;
2234
+ readonly name: string;
2235
+ readonly fields: readonly ["d", "u", "mt", "mv"];
2236
+ readonly cast: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
2237
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2238
+ ipn: string | null;
2239
+ }>>>;
2240
+ readonly coden: StructingCoden;
2241
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Labeler, Texter]) => Readonly<{
2242
+ d: Noncer;
2243
+ u: Noncer;
2244
+ mt: Labeler;
2245
+ mv: Texter;
2246
+ }>;
2247
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
2248
+ d: Noncer;
2249
+ u: Noncer;
2250
+ mt: Labeler;
2251
+ mv: Texter;
2252
+ }>;
2253
+ readonly toTuple: (value: Readonly<{
2254
+ d: Noncer;
2255
+ u: Noncer;
2256
+ mt: Labeler;
2257
+ mv: Texter;
2258
+ }>) => readonly [Noncer, Noncer, Labeler, Texter];
2259
+ readonly toCrew: (value: Readonly<{
2260
+ d: Noncer;
2261
+ u: Noncer;
2262
+ mt: Labeler;
2263
+ mv: Texter;
2264
+ }>) => Readonly<{
2265
+ d: string;
2266
+ u: string;
2267
+ mt: string;
2268
+ mv: string;
2269
+ }>;
2270
+ readonly qb64: (value: Readonly<{
2271
+ d: Noncer;
2272
+ u: Noncer;
2273
+ mt: Labeler;
2274
+ mv: Texter;
2275
+ }>) => string;
2276
+ readonly qb64b: (value: Readonly<{
2277
+ d: Noncer;
2278
+ u: Noncer;
2279
+ mt: Labeler;
2280
+ mv: Texter;
2281
+ }>) => Uint8Array;
2282
+ readonly qb2: (value: Readonly<{
2283
+ d: Noncer;
2284
+ u: Noncer;
2285
+ mt: Labeler;
2286
+ mv: Texter;
2287
+ }>) => Uint8Array;
2288
+ }>;
2289
+ }>;
2290
+ /** Typed-media cast registry keyed by clan name. */
2291
+ export declare const TypeMediaCastDom: Readonly<{
2292
+ readonly TypeMedia: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
2293
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2294
+ ipn: string | null;
2295
+ }>>>;
2296
+ }>;
2297
+ /** KERIpy alias for `TypeMediaCastDom`. */
2298
+ export declare const TMCastDom: Readonly<{
2299
+ readonly TypeMedia: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
2300
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2301
+ ipn: string | null;
2302
+ }>>>;
2303
+ }>;
2304
+ /** All structing clan registries combined into one authoritative CESR view. */
2305
+ export declare const AllClanDom: Readonly<{
2306
+ readonly TypeMedia: Readonly<{
2307
+ readonly isSad: (value: unknown) => value is Readonly<{
2308
+ d: string;
2309
+ u: string;
2310
+ mt: string;
2311
+ mv: string;
2312
+ }>;
2313
+ readonly fromSad: (value: Readonly<{
2314
+ d: string;
2315
+ u: string;
2316
+ mt: string;
2317
+ mv: string;
2318
+ }>) => Readonly<{
2319
+ d: Noncer;
2320
+ u: Noncer;
2321
+ mt: Labeler;
2322
+ mv: Texter;
2323
+ }>;
2324
+ readonly toSad: (value: Readonly<{
2325
+ d: Noncer;
2326
+ u: Noncer;
2327
+ mt: Labeler;
2328
+ mv: Texter;
2329
+ }>) => Readonly<{
2330
+ d: string;
2331
+ u: string;
2332
+ mt: string;
2333
+ mv: string;
2334
+ }>;
2335
+ readonly name: string;
2336
+ readonly fields: readonly ["d", "u", "mt", "mv"];
2337
+ readonly cast: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
2338
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2339
+ ipn: string | null;
2340
+ }>>>;
2341
+ readonly coden: StructingCoden;
2342
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Labeler, Texter]) => Readonly<{
2343
+ d: Noncer;
2344
+ u: Noncer;
2345
+ mt: Labeler;
2346
+ mv: Texter;
2347
+ }>;
2348
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
2349
+ d: Noncer;
2350
+ u: Noncer;
2351
+ mt: Labeler;
2352
+ mv: Texter;
2353
+ }>;
2354
+ readonly toTuple: (value: Readonly<{
2355
+ d: Noncer;
2356
+ u: Noncer;
2357
+ mt: Labeler;
2358
+ mv: Texter;
2359
+ }>) => readonly [Noncer, Noncer, Labeler, Texter];
2360
+ readonly toCrew: (value: Readonly<{
2361
+ d: Noncer;
2362
+ u: Noncer;
2363
+ mt: Labeler;
2364
+ mv: Texter;
2365
+ }>) => Readonly<{
2366
+ d: string;
2367
+ u: string;
2368
+ mt: string;
2369
+ mv: string;
2370
+ }>;
2371
+ readonly qb64: (value: Readonly<{
2372
+ d: Noncer;
2373
+ u: Noncer;
2374
+ mt: Labeler;
2375
+ mv: Texter;
2376
+ }>) => string;
2377
+ readonly qb64b: (value: Readonly<{
2378
+ d: Noncer;
2379
+ u: Noncer;
2380
+ mt: Labeler;
2381
+ mv: Texter;
2382
+ }>) => Uint8Array;
2383
+ readonly qb2: (value: Readonly<{
2384
+ d: Noncer;
2385
+ u: Noncer;
2386
+ mt: Labeler;
2387
+ mv: Texter;
2388
+ }>) => Uint8Array;
2389
+ }>;
2390
+ readonly BlindState: Readonly<{
2391
+ readonly isSad: (value: unknown) => value is Readonly<{
2392
+ d: string;
2393
+ u: string;
2394
+ td: string;
2395
+ ts: string;
2396
+ }>;
2397
+ readonly fromSad: (value: Readonly<{
2398
+ d: string;
2399
+ u: string;
2400
+ td: string;
2401
+ ts: string;
2402
+ }>) => Readonly<{
2403
+ d: Noncer;
2404
+ u: Noncer;
2405
+ td: Noncer;
2406
+ ts: Labeler;
2407
+ }>;
2408
+ readonly toSad: (value: Readonly<{
2409
+ d: Noncer;
2410
+ u: Noncer;
2411
+ td: Noncer;
2412
+ ts: Labeler;
2413
+ }>) => Readonly<{
2414
+ d: string;
2415
+ u: string;
2416
+ td: string;
2417
+ ts: string;
2418
+ }>;
2419
+ readonly name: string;
2420
+ readonly fields: readonly ["d", "u", "td", "ts"];
2421
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
2422
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2423
+ ipn: string | null;
2424
+ }>>>;
2425
+ readonly coden: StructingCoden;
2426
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler]) => Readonly<{
2427
+ d: Noncer;
2428
+ u: Noncer;
2429
+ td: Noncer;
2430
+ ts: Labeler;
2431
+ }>;
2432
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
2433
+ d: Noncer;
2434
+ u: Noncer;
2435
+ td: Noncer;
2436
+ ts: Labeler;
2437
+ }>;
2438
+ readonly toTuple: (value: Readonly<{
2439
+ d: Noncer;
2440
+ u: Noncer;
2441
+ td: Noncer;
2442
+ ts: Labeler;
2443
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler];
2444
+ readonly toCrew: (value: Readonly<{
2445
+ d: Noncer;
2446
+ u: Noncer;
2447
+ td: Noncer;
2448
+ ts: Labeler;
2449
+ }>) => Readonly<{
2450
+ d: string;
2451
+ u: string;
2452
+ td: string;
2453
+ ts: string;
2454
+ }>;
2455
+ readonly qb64: (value: Readonly<{
2456
+ d: Noncer;
2457
+ u: Noncer;
2458
+ td: Noncer;
2459
+ ts: Labeler;
2460
+ }>) => string;
2461
+ readonly qb64b: (value: Readonly<{
2462
+ d: Noncer;
2463
+ u: Noncer;
2464
+ td: Noncer;
2465
+ ts: Labeler;
2466
+ }>) => Uint8Array;
2467
+ readonly qb2: (value: Readonly<{
2468
+ d: Noncer;
2469
+ u: Noncer;
2470
+ td: Noncer;
2471
+ ts: Labeler;
2472
+ }>) => Uint8Array;
2473
+ }>;
2474
+ readonly BoundState: Readonly<{
2475
+ readonly isSad: (value: unknown) => value is Readonly<{
2476
+ d: string;
2477
+ u: string;
2478
+ td: string;
2479
+ ts: string;
2480
+ bn: string;
2481
+ bd: string;
2482
+ }>;
2483
+ readonly fromSad: (value: Readonly<{
2484
+ d: string;
2485
+ u: string;
2486
+ td: string;
2487
+ ts: string;
2488
+ bn: string;
2489
+ bd: string;
2490
+ }>) => Readonly<{
2491
+ d: Noncer;
2492
+ u: Noncer;
2493
+ td: Noncer;
2494
+ ts: Labeler;
2495
+ bn: NumberPrimitive;
2496
+ bd: Noncer;
2497
+ }>;
2498
+ readonly toSad: (value: Readonly<{
2499
+ d: Noncer;
2500
+ u: Noncer;
2501
+ td: Noncer;
2502
+ ts: Labeler;
2503
+ bn: NumberPrimitive;
2504
+ bd: Noncer;
2505
+ }>) => Readonly<{
2506
+ d: string;
2507
+ u: string;
2508
+ td: string;
2509
+ ts: string;
2510
+ bn: string;
2511
+ bd: string;
2512
+ }>;
2513
+ readonly name: string;
2514
+ readonly fields: readonly ["d", "u", "td", "ts", "bn", "bd"];
2515
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
2516
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2517
+ ipn: string | null;
2518
+ }>>>;
2519
+ readonly coden: StructingCoden;
2520
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer]) => Readonly<{
2521
+ d: Noncer;
2522
+ u: Noncer;
2523
+ td: Noncer;
2524
+ ts: Labeler;
2525
+ bn: NumberPrimitive;
2526
+ bd: Noncer;
2527
+ }>;
2528
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
2529
+ d: Noncer;
2530
+ u: Noncer;
2531
+ td: Noncer;
2532
+ ts: Labeler;
2533
+ bn: NumberPrimitive;
2534
+ bd: Noncer;
2535
+ }>;
2536
+ readonly toTuple: (value: Readonly<{
2537
+ d: Noncer;
2538
+ u: Noncer;
2539
+ td: Noncer;
2540
+ ts: Labeler;
2541
+ bn: NumberPrimitive;
2542
+ bd: Noncer;
2543
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer];
2544
+ readonly toCrew: (value: Readonly<{
2545
+ d: Noncer;
2546
+ u: Noncer;
2547
+ td: Noncer;
2548
+ ts: Labeler;
2549
+ bn: NumberPrimitive;
2550
+ bd: Noncer;
2551
+ }>) => Readonly<{
2552
+ d: string;
2553
+ u: string;
2554
+ td: string;
2555
+ ts: string;
2556
+ bn: string;
2557
+ bd: string;
2558
+ }>;
2559
+ readonly qb64: (value: Readonly<{
2560
+ d: Noncer;
2561
+ u: Noncer;
2562
+ td: Noncer;
2563
+ ts: Labeler;
2564
+ bn: NumberPrimitive;
2565
+ bd: Noncer;
2566
+ }>) => string;
2567
+ readonly qb64b: (value: Readonly<{
2568
+ d: Noncer;
2569
+ u: Noncer;
2570
+ td: Noncer;
2571
+ ts: Labeler;
2572
+ bn: NumberPrimitive;
2573
+ bd: Noncer;
2574
+ }>) => Uint8Array;
2575
+ readonly qb2: (value: Readonly<{
2576
+ d: Noncer;
2577
+ u: Noncer;
2578
+ td: Noncer;
2579
+ ts: Labeler;
2580
+ bn: NumberPrimitive;
2581
+ bd: Noncer;
2582
+ }>) => Uint8Array;
2583
+ }>;
2584
+ readonly SealDigest: Readonly<{
2585
+ readonly isSad: (value: unknown) => value is Readonly<{
2586
+ d: string;
2587
+ }>;
2588
+ readonly fromSad: (value: Readonly<{
2589
+ d: string;
2590
+ }>) => Readonly<{
2591
+ d: Diger;
2592
+ }>;
2593
+ readonly toSad: (value: Readonly<{
2594
+ d: Diger;
2595
+ }>) => Readonly<{
2596
+ d: string;
2597
+ }>;
2598
+ readonly name: string;
2599
+ readonly fields: readonly ["d"];
2600
+ readonly cast: Readonly<Record<"d", Readonly<{
2601
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2602
+ ipn: string | null;
2603
+ }>>>;
2604
+ readonly coden: StructingCoden;
2605
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
2606
+ d: Diger;
2607
+ }>;
2608
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
2609
+ d: Diger;
2610
+ }>;
2611
+ readonly toTuple: (value: Readonly<{
2612
+ d: Diger;
2613
+ }>) => readonly [Diger];
2614
+ readonly toCrew: (value: Readonly<{
2615
+ d: Diger;
2616
+ }>) => Readonly<{
2617
+ d: string;
2618
+ }>;
2619
+ readonly qb64: (value: Readonly<{
2620
+ d: Diger;
2621
+ }>) => string;
2622
+ readonly qb64b: (value: Readonly<{
2623
+ d: Diger;
2624
+ }>) => Uint8Array;
2625
+ readonly qb2: (value: Readonly<{
2626
+ d: Diger;
2627
+ }>) => Uint8Array;
2628
+ }>;
2629
+ readonly SealRoot: Readonly<{
2630
+ readonly isSad: (value: unknown) => value is Readonly<{
2631
+ rd: string;
2632
+ }>;
2633
+ readonly fromSad: (value: Readonly<{
2634
+ rd: string;
2635
+ }>) => Readonly<{
2636
+ rd: Diger;
2637
+ }>;
2638
+ readonly toSad: (value: Readonly<{
2639
+ rd: Diger;
2640
+ }>) => Readonly<{
2641
+ rd: string;
2642
+ }>;
2643
+ readonly name: string;
2644
+ readonly fields: readonly ["rd"];
2645
+ readonly cast: Readonly<Record<"rd", Readonly<{
2646
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2647
+ ipn: string | null;
2648
+ }>>>;
2649
+ readonly coden: StructingCoden;
2650
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
2651
+ rd: Diger;
2652
+ }>;
2653
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
2654
+ rd: Diger;
2655
+ }>;
2656
+ readonly toTuple: (value: Readonly<{
2657
+ rd: Diger;
2658
+ }>) => readonly [Diger];
2659
+ readonly toCrew: (value: Readonly<{
2660
+ rd: Diger;
2661
+ }>) => Readonly<{
2662
+ rd: string;
2663
+ }>;
2664
+ readonly qb64: (value: Readonly<{
2665
+ rd: Diger;
2666
+ }>) => string;
2667
+ readonly qb64b: (value: Readonly<{
2668
+ rd: Diger;
2669
+ }>) => Uint8Array;
2670
+ readonly qb2: (value: Readonly<{
2671
+ rd: Diger;
2672
+ }>) => Uint8Array;
2673
+ }>;
2674
+ readonly SealSource: Readonly<{
2675
+ readonly isSad: (value: unknown) => value is Readonly<{
2676
+ s: string;
2677
+ d: string;
2678
+ }>;
2679
+ readonly fromSad: (value: Readonly<{
2680
+ s: string;
2681
+ d: string;
2682
+ }>) => Readonly<{
2683
+ s: NumberPrimitive;
2684
+ d: Diger;
2685
+ }>;
2686
+ readonly toSad: (value: Readonly<{
2687
+ s: NumberPrimitive;
2688
+ d: Diger;
2689
+ }>) => Readonly<{
2690
+ s: string;
2691
+ d: string;
2692
+ }>;
2693
+ readonly name: string;
2694
+ readonly fields: readonly ["s", "d"];
2695
+ readonly cast: Readonly<Record<"d" | "s", Readonly<{
2696
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2697
+ ipn: string | null;
2698
+ }>>>;
2699
+ readonly coden: StructingCoden;
2700
+ readonly fromTuple: (tuple: readonly [NumberPrimitive, Diger]) => Readonly<{
2701
+ s: NumberPrimitive;
2702
+ d: Diger;
2703
+ }>;
2704
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
2705
+ s: NumberPrimitive;
2706
+ d: Diger;
2707
+ }>;
2708
+ readonly toTuple: (value: Readonly<{
2709
+ s: NumberPrimitive;
2710
+ d: Diger;
2711
+ }>) => readonly [NumberPrimitive, Diger];
2712
+ readonly toCrew: (value: Readonly<{
2713
+ s: NumberPrimitive;
2714
+ d: Diger;
2715
+ }>) => Readonly<{
2716
+ s: string;
2717
+ d: string;
2718
+ }>;
2719
+ readonly qb64: (value: Readonly<{
2720
+ s: NumberPrimitive;
2721
+ d: Diger;
2722
+ }>) => string;
2723
+ readonly qb64b: (value: Readonly<{
2724
+ s: NumberPrimitive;
2725
+ d: Diger;
2726
+ }>) => Uint8Array;
2727
+ readonly qb2: (value: Readonly<{
2728
+ s: NumberPrimitive;
2729
+ d: Diger;
2730
+ }>) => Uint8Array;
2731
+ }>;
2732
+ readonly SealEvent: Readonly<{
2733
+ readonly isSad: (value: unknown) => value is Readonly<{
2734
+ i: string;
2735
+ s: string;
2736
+ d: string;
2737
+ }>;
2738
+ readonly fromSad: (value: Readonly<{
2739
+ i: string;
2740
+ s: string;
2741
+ d: string;
2742
+ }>) => Readonly<{
2743
+ i: Prefixer;
2744
+ s: NumberPrimitive;
2745
+ d: Diger;
2746
+ }>;
2747
+ readonly toSad: (value: Readonly<{
2748
+ i: Prefixer;
2749
+ s: NumberPrimitive;
2750
+ d: Diger;
2751
+ }>) => Readonly<{
2752
+ i: string;
2753
+ s: string;
2754
+ d: string;
2755
+ }>;
2756
+ readonly name: string;
2757
+ readonly fields: readonly ["i", "s", "d"];
2758
+ readonly cast: Readonly<Record<"d" | "s" | "i", Readonly<{
2759
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2760
+ ipn: string | null;
2761
+ }>>>;
2762
+ readonly coden: StructingCoden;
2763
+ readonly fromTuple: (tuple: readonly [Prefixer, NumberPrimitive, Diger]) => Readonly<{
2764
+ i: Prefixer;
2765
+ s: NumberPrimitive;
2766
+ d: Diger;
2767
+ }>;
2768
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b]) => Readonly<{
2769
+ i: Prefixer;
2770
+ s: NumberPrimitive;
2771
+ d: Diger;
2772
+ }>;
2773
+ readonly toTuple: (value: Readonly<{
2774
+ i: Prefixer;
2775
+ s: NumberPrimitive;
2776
+ d: Diger;
2777
+ }>) => readonly [Prefixer, NumberPrimitive, Diger];
2778
+ readonly toCrew: (value: Readonly<{
2779
+ i: Prefixer;
2780
+ s: NumberPrimitive;
2781
+ d: Diger;
2782
+ }>) => Readonly<{
2783
+ i: string;
2784
+ s: string;
2785
+ d: string;
2786
+ }>;
2787
+ readonly qb64: (value: Readonly<{
2788
+ i: Prefixer;
2789
+ s: NumberPrimitive;
2790
+ d: Diger;
2791
+ }>) => string;
2792
+ readonly qb64b: (value: Readonly<{
2793
+ i: Prefixer;
2794
+ s: NumberPrimitive;
2795
+ d: Diger;
2796
+ }>) => Uint8Array;
2797
+ readonly qb2: (value: Readonly<{
2798
+ i: Prefixer;
2799
+ s: NumberPrimitive;
2800
+ d: Diger;
2801
+ }>) => Uint8Array;
2802
+ }>;
2803
+ readonly SealLast: Readonly<{
2804
+ readonly isSad: (value: unknown) => value is Readonly<{
2805
+ i: string;
2806
+ }>;
2807
+ readonly fromSad: (value: Readonly<{
2808
+ i: string;
2809
+ }>) => Readonly<{
2810
+ i: Prefixer;
2811
+ }>;
2812
+ readonly toSad: (value: Readonly<{
2813
+ i: Prefixer;
2814
+ }>) => Readonly<{
2815
+ i: string;
2816
+ }>;
2817
+ readonly name: string;
2818
+ readonly fields: readonly ["i"];
2819
+ readonly cast: Readonly<Record<"i", Readonly<{
2820
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2821
+ ipn: string | null;
2822
+ }>>>;
2823
+ readonly coden: StructingCoden;
2824
+ readonly fromTuple: (tuple: readonly [Prefixer]) => Readonly<{
2825
+ i: Prefixer;
2826
+ }>;
2827
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
2828
+ i: Prefixer;
2829
+ }>;
2830
+ readonly toTuple: (value: Readonly<{
2831
+ i: Prefixer;
2832
+ }>) => readonly [Prefixer];
2833
+ readonly toCrew: (value: Readonly<{
2834
+ i: Prefixer;
2835
+ }>) => Readonly<{
2836
+ i: string;
2837
+ }>;
2838
+ readonly qb64: (value: Readonly<{
2839
+ i: Prefixer;
2840
+ }>) => string;
2841
+ readonly qb64b: (value: Readonly<{
2842
+ i: Prefixer;
2843
+ }>) => Uint8Array;
2844
+ readonly qb2: (value: Readonly<{
2845
+ i: Prefixer;
2846
+ }>) => Uint8Array;
2847
+ }>;
2848
+ readonly SealBack: Readonly<{
2849
+ readonly isSad: (value: unknown) => value is Readonly<{
2850
+ bi: string;
2851
+ d: string;
2852
+ }>;
2853
+ readonly fromSad: (value: Readonly<{
2854
+ bi: string;
2855
+ d: string;
2856
+ }>) => Readonly<{
2857
+ bi: Prefixer;
2858
+ d: Diger;
2859
+ }>;
2860
+ readonly toSad: (value: Readonly<{
2861
+ bi: Prefixer;
2862
+ d: Diger;
2863
+ }>) => Readonly<{
2864
+ bi: string;
2865
+ d: string;
2866
+ }>;
2867
+ readonly name: string;
2868
+ readonly fields: readonly ["bi", "d"];
2869
+ readonly cast: Readonly<Record<"d" | "bi", Readonly<{
2870
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2871
+ ipn: string | null;
2872
+ }>>>;
2873
+ readonly coden: StructingCoden;
2874
+ readonly fromTuple: (tuple: readonly [Prefixer, Diger]) => Readonly<{
2875
+ bi: Prefixer;
2876
+ d: Diger;
2877
+ }>;
2878
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
2879
+ bi: Prefixer;
2880
+ d: Diger;
2881
+ }>;
2882
+ readonly toTuple: (value: Readonly<{
2883
+ bi: Prefixer;
2884
+ d: Diger;
2885
+ }>) => readonly [Prefixer, Diger];
2886
+ readonly toCrew: (value: Readonly<{
2887
+ bi: Prefixer;
2888
+ d: Diger;
2889
+ }>) => Readonly<{
2890
+ bi: string;
2891
+ d: string;
2892
+ }>;
2893
+ readonly qb64: (value: Readonly<{
2894
+ bi: Prefixer;
2895
+ d: Diger;
2896
+ }>) => string;
2897
+ readonly qb64b: (value: Readonly<{
2898
+ bi: Prefixer;
2899
+ d: Diger;
2900
+ }>) => Uint8Array;
2901
+ readonly qb2: (value: Readonly<{
2902
+ bi: Prefixer;
2903
+ d: Diger;
2904
+ }>) => Uint8Array;
2905
+ }>;
2906
+ readonly SealKind: Readonly<{
2907
+ readonly isSad: (value: unknown) => value is Readonly<{
2908
+ t: string;
2909
+ d: string;
2910
+ }>;
2911
+ readonly fromSad: (value: Readonly<{
2912
+ t: string;
2913
+ d: string;
2914
+ }>) => Readonly<{
2915
+ t: Verser;
2916
+ d: Diger;
2917
+ }>;
2918
+ readonly toSad: (value: Readonly<{
2919
+ t: Verser;
2920
+ d: Diger;
2921
+ }>) => Readonly<{
2922
+ t: string;
2923
+ d: string;
2924
+ }>;
2925
+ readonly name: string;
2926
+ readonly fields: readonly ["t", "d"];
2927
+ readonly cast: Readonly<Record<"d" | "t", Readonly<{
2928
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
2929
+ ipn: string | null;
2930
+ }>>>;
2931
+ readonly coden: StructingCoden;
2932
+ readonly fromTuple: (tuple: readonly [Verser, Diger]) => Readonly<{
2933
+ t: Verser;
2934
+ d: Diger;
2935
+ }>;
2936
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
2937
+ t: Verser;
2938
+ d: Diger;
2939
+ }>;
2940
+ readonly toTuple: (value: Readonly<{
2941
+ t: Verser;
2942
+ d: Diger;
2943
+ }>) => readonly [Verser, Diger];
2944
+ readonly toCrew: (value: Readonly<{
2945
+ t: Verser;
2946
+ d: Diger;
2947
+ }>) => Readonly<{
2948
+ t: string;
2949
+ d: string;
2950
+ }>;
2951
+ readonly qb64: (value: Readonly<{
2952
+ t: Verser;
2953
+ d: Diger;
2954
+ }>) => string;
2955
+ readonly qb64b: (value: Readonly<{
2956
+ t: Verser;
2957
+ d: Diger;
2958
+ }>) => Uint8Array;
2959
+ readonly qb2: (value: Readonly<{
2960
+ t: Verser;
2961
+ d: Diger;
2962
+ }>) => Uint8Array;
2963
+ }>;
2964
+ }>;
2965
+ /** KERIpy alias for `AllClanDom`. */
2966
+ export declare const AClanDom: Readonly<{
2967
+ readonly TypeMedia: Readonly<{
2968
+ readonly isSad: (value: unknown) => value is Readonly<{
2969
+ d: string;
2970
+ u: string;
2971
+ mt: string;
2972
+ mv: string;
2973
+ }>;
2974
+ readonly fromSad: (value: Readonly<{
2975
+ d: string;
2976
+ u: string;
2977
+ mt: string;
2978
+ mv: string;
2979
+ }>) => Readonly<{
2980
+ d: Noncer;
2981
+ u: Noncer;
2982
+ mt: Labeler;
2983
+ mv: Texter;
2984
+ }>;
2985
+ readonly toSad: (value: Readonly<{
2986
+ d: Noncer;
2987
+ u: Noncer;
2988
+ mt: Labeler;
2989
+ mv: Texter;
2990
+ }>) => Readonly<{
2991
+ d: string;
2992
+ u: string;
2993
+ mt: string;
2994
+ mv: string;
2995
+ }>;
2996
+ readonly name: string;
2997
+ readonly fields: readonly ["d", "u", "mt", "mv"];
2998
+ readonly cast: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
2999
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3000
+ ipn: string | null;
3001
+ }>>>;
3002
+ readonly coden: StructingCoden;
3003
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Labeler, Texter]) => Readonly<{
3004
+ d: Noncer;
3005
+ u: Noncer;
3006
+ mt: Labeler;
3007
+ mv: Texter;
3008
+ }>;
3009
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
3010
+ d: Noncer;
3011
+ u: Noncer;
3012
+ mt: Labeler;
3013
+ mv: Texter;
3014
+ }>;
3015
+ readonly toTuple: (value: Readonly<{
3016
+ d: Noncer;
3017
+ u: Noncer;
3018
+ mt: Labeler;
3019
+ mv: Texter;
3020
+ }>) => readonly [Noncer, Noncer, Labeler, Texter];
3021
+ readonly toCrew: (value: Readonly<{
3022
+ d: Noncer;
3023
+ u: Noncer;
3024
+ mt: Labeler;
3025
+ mv: Texter;
3026
+ }>) => Readonly<{
3027
+ d: string;
3028
+ u: string;
3029
+ mt: string;
3030
+ mv: string;
3031
+ }>;
3032
+ readonly qb64: (value: Readonly<{
3033
+ d: Noncer;
3034
+ u: Noncer;
3035
+ mt: Labeler;
3036
+ mv: Texter;
3037
+ }>) => string;
3038
+ readonly qb64b: (value: Readonly<{
3039
+ d: Noncer;
3040
+ u: Noncer;
3041
+ mt: Labeler;
3042
+ mv: Texter;
3043
+ }>) => Uint8Array;
3044
+ readonly qb2: (value: Readonly<{
3045
+ d: Noncer;
3046
+ u: Noncer;
3047
+ mt: Labeler;
3048
+ mv: Texter;
3049
+ }>) => Uint8Array;
3050
+ }>;
3051
+ readonly BlindState: Readonly<{
3052
+ readonly isSad: (value: unknown) => value is Readonly<{
3053
+ d: string;
3054
+ u: string;
3055
+ td: string;
3056
+ ts: string;
3057
+ }>;
3058
+ readonly fromSad: (value: Readonly<{
3059
+ d: string;
3060
+ u: string;
3061
+ td: string;
3062
+ ts: string;
3063
+ }>) => Readonly<{
3064
+ d: Noncer;
3065
+ u: Noncer;
3066
+ td: Noncer;
3067
+ ts: Labeler;
3068
+ }>;
3069
+ readonly toSad: (value: Readonly<{
3070
+ d: Noncer;
3071
+ u: Noncer;
3072
+ td: Noncer;
3073
+ ts: Labeler;
3074
+ }>) => Readonly<{
3075
+ d: string;
3076
+ u: string;
3077
+ td: string;
3078
+ ts: string;
3079
+ }>;
3080
+ readonly name: string;
3081
+ readonly fields: readonly ["d", "u", "td", "ts"];
3082
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
3083
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3084
+ ipn: string | null;
3085
+ }>>>;
3086
+ readonly coden: StructingCoden;
3087
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler]) => Readonly<{
3088
+ d: Noncer;
3089
+ u: Noncer;
3090
+ td: Noncer;
3091
+ ts: Labeler;
3092
+ }>;
3093
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
3094
+ d: Noncer;
3095
+ u: Noncer;
3096
+ td: Noncer;
3097
+ ts: Labeler;
3098
+ }>;
3099
+ readonly toTuple: (value: Readonly<{
3100
+ d: Noncer;
3101
+ u: Noncer;
3102
+ td: Noncer;
3103
+ ts: Labeler;
3104
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler];
3105
+ readonly toCrew: (value: Readonly<{
3106
+ d: Noncer;
3107
+ u: Noncer;
3108
+ td: Noncer;
3109
+ ts: Labeler;
3110
+ }>) => Readonly<{
3111
+ d: string;
3112
+ u: string;
3113
+ td: string;
3114
+ ts: string;
3115
+ }>;
3116
+ readonly qb64: (value: Readonly<{
3117
+ d: Noncer;
3118
+ u: Noncer;
3119
+ td: Noncer;
3120
+ ts: Labeler;
3121
+ }>) => string;
3122
+ readonly qb64b: (value: Readonly<{
3123
+ d: Noncer;
3124
+ u: Noncer;
3125
+ td: Noncer;
3126
+ ts: Labeler;
3127
+ }>) => Uint8Array;
3128
+ readonly qb2: (value: Readonly<{
3129
+ d: Noncer;
3130
+ u: Noncer;
3131
+ td: Noncer;
3132
+ ts: Labeler;
3133
+ }>) => Uint8Array;
3134
+ }>;
3135
+ readonly BoundState: Readonly<{
3136
+ readonly isSad: (value: unknown) => value is Readonly<{
3137
+ d: string;
3138
+ u: string;
3139
+ td: string;
3140
+ ts: string;
3141
+ bn: string;
3142
+ bd: string;
3143
+ }>;
3144
+ readonly fromSad: (value: Readonly<{
3145
+ d: string;
3146
+ u: string;
3147
+ td: string;
3148
+ ts: string;
3149
+ bn: string;
3150
+ bd: string;
3151
+ }>) => Readonly<{
3152
+ d: Noncer;
3153
+ u: Noncer;
3154
+ td: Noncer;
3155
+ ts: Labeler;
3156
+ bn: NumberPrimitive;
3157
+ bd: Noncer;
3158
+ }>;
3159
+ readonly toSad: (value: Readonly<{
3160
+ d: Noncer;
3161
+ u: Noncer;
3162
+ td: Noncer;
3163
+ ts: Labeler;
3164
+ bn: NumberPrimitive;
3165
+ bd: Noncer;
3166
+ }>) => Readonly<{
3167
+ d: string;
3168
+ u: string;
3169
+ td: string;
3170
+ ts: string;
3171
+ bn: string;
3172
+ bd: string;
3173
+ }>;
3174
+ readonly name: string;
3175
+ readonly fields: readonly ["d", "u", "td", "ts", "bn", "bd"];
3176
+ readonly cast: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
3177
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3178
+ ipn: string | null;
3179
+ }>>>;
3180
+ readonly coden: StructingCoden;
3181
+ readonly fromTuple: (tuple: readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer]) => Readonly<{
3182
+ d: Noncer;
3183
+ u: Noncer;
3184
+ td: Noncer;
3185
+ ts: Labeler;
3186
+ bn: NumberPrimitive;
3187
+ bd: Noncer;
3188
+ }>;
3189
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b, Qb64b, Qb64b, Qb64b]) => Readonly<{
3190
+ d: Noncer;
3191
+ u: Noncer;
3192
+ td: Noncer;
3193
+ ts: Labeler;
3194
+ bn: NumberPrimitive;
3195
+ bd: Noncer;
3196
+ }>;
3197
+ readonly toTuple: (value: Readonly<{
3198
+ d: Noncer;
3199
+ u: Noncer;
3200
+ td: Noncer;
3201
+ ts: Labeler;
3202
+ bn: NumberPrimitive;
3203
+ bd: Noncer;
3204
+ }>) => readonly [Noncer, Noncer, Noncer, Labeler, NumberPrimitive, Noncer];
3205
+ readonly toCrew: (value: Readonly<{
3206
+ d: Noncer;
3207
+ u: Noncer;
3208
+ td: Noncer;
3209
+ ts: Labeler;
3210
+ bn: NumberPrimitive;
3211
+ bd: Noncer;
3212
+ }>) => Readonly<{
3213
+ d: string;
3214
+ u: string;
3215
+ td: string;
3216
+ ts: string;
3217
+ bn: string;
3218
+ bd: string;
3219
+ }>;
3220
+ readonly qb64: (value: Readonly<{
3221
+ d: Noncer;
3222
+ u: Noncer;
3223
+ td: Noncer;
3224
+ ts: Labeler;
3225
+ bn: NumberPrimitive;
3226
+ bd: Noncer;
3227
+ }>) => string;
3228
+ readonly qb64b: (value: Readonly<{
3229
+ d: Noncer;
3230
+ u: Noncer;
3231
+ td: Noncer;
3232
+ ts: Labeler;
3233
+ bn: NumberPrimitive;
3234
+ bd: Noncer;
3235
+ }>) => Uint8Array;
3236
+ readonly qb2: (value: Readonly<{
3237
+ d: Noncer;
3238
+ u: Noncer;
3239
+ td: Noncer;
3240
+ ts: Labeler;
3241
+ bn: NumberPrimitive;
3242
+ bd: Noncer;
3243
+ }>) => Uint8Array;
3244
+ }>;
3245
+ readonly SealDigest: Readonly<{
3246
+ readonly isSad: (value: unknown) => value is Readonly<{
3247
+ d: string;
3248
+ }>;
3249
+ readonly fromSad: (value: Readonly<{
3250
+ d: string;
3251
+ }>) => Readonly<{
3252
+ d: Diger;
3253
+ }>;
3254
+ readonly toSad: (value: Readonly<{
3255
+ d: Diger;
3256
+ }>) => Readonly<{
3257
+ d: string;
3258
+ }>;
3259
+ readonly name: string;
3260
+ readonly fields: readonly ["d"];
3261
+ readonly cast: Readonly<Record<"d", Readonly<{
3262
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3263
+ ipn: string | null;
3264
+ }>>>;
3265
+ readonly coden: StructingCoden;
3266
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
3267
+ d: Diger;
3268
+ }>;
3269
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
3270
+ d: Diger;
3271
+ }>;
3272
+ readonly toTuple: (value: Readonly<{
3273
+ d: Diger;
3274
+ }>) => readonly [Diger];
3275
+ readonly toCrew: (value: Readonly<{
3276
+ d: Diger;
3277
+ }>) => Readonly<{
3278
+ d: string;
3279
+ }>;
3280
+ readonly qb64: (value: Readonly<{
3281
+ d: Diger;
3282
+ }>) => string;
3283
+ readonly qb64b: (value: Readonly<{
3284
+ d: Diger;
3285
+ }>) => Uint8Array;
3286
+ readonly qb2: (value: Readonly<{
3287
+ d: Diger;
3288
+ }>) => Uint8Array;
3289
+ }>;
3290
+ readonly SealRoot: Readonly<{
3291
+ readonly isSad: (value: unknown) => value is Readonly<{
3292
+ rd: string;
3293
+ }>;
3294
+ readonly fromSad: (value: Readonly<{
3295
+ rd: string;
3296
+ }>) => Readonly<{
3297
+ rd: Diger;
3298
+ }>;
3299
+ readonly toSad: (value: Readonly<{
3300
+ rd: Diger;
3301
+ }>) => Readonly<{
3302
+ rd: string;
3303
+ }>;
3304
+ readonly name: string;
3305
+ readonly fields: readonly ["rd"];
3306
+ readonly cast: Readonly<Record<"rd", Readonly<{
3307
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3308
+ ipn: string | null;
3309
+ }>>>;
3310
+ readonly coden: StructingCoden;
3311
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
3312
+ rd: Diger;
3313
+ }>;
3314
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
3315
+ rd: Diger;
3316
+ }>;
3317
+ readonly toTuple: (value: Readonly<{
3318
+ rd: Diger;
3319
+ }>) => readonly [Diger];
3320
+ readonly toCrew: (value: Readonly<{
3321
+ rd: Diger;
3322
+ }>) => Readonly<{
3323
+ rd: string;
3324
+ }>;
3325
+ readonly qb64: (value: Readonly<{
3326
+ rd: Diger;
3327
+ }>) => string;
3328
+ readonly qb64b: (value: Readonly<{
3329
+ rd: Diger;
3330
+ }>) => Uint8Array;
3331
+ readonly qb2: (value: Readonly<{
3332
+ rd: Diger;
3333
+ }>) => Uint8Array;
3334
+ }>;
3335
+ readonly SealSource: Readonly<{
3336
+ readonly isSad: (value: unknown) => value is Readonly<{
3337
+ s: string;
3338
+ d: string;
3339
+ }>;
3340
+ readonly fromSad: (value: Readonly<{
3341
+ s: string;
3342
+ d: string;
3343
+ }>) => Readonly<{
3344
+ s: NumberPrimitive;
3345
+ d: Diger;
3346
+ }>;
3347
+ readonly toSad: (value: Readonly<{
3348
+ s: NumberPrimitive;
3349
+ d: Diger;
3350
+ }>) => Readonly<{
3351
+ s: string;
3352
+ d: string;
3353
+ }>;
3354
+ readonly name: string;
3355
+ readonly fields: readonly ["s", "d"];
3356
+ readonly cast: Readonly<Record<"d" | "s", Readonly<{
3357
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3358
+ ipn: string | null;
3359
+ }>>>;
3360
+ readonly coden: StructingCoden;
3361
+ readonly fromTuple: (tuple: readonly [NumberPrimitive, Diger]) => Readonly<{
3362
+ s: NumberPrimitive;
3363
+ d: Diger;
3364
+ }>;
3365
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
3366
+ s: NumberPrimitive;
3367
+ d: Diger;
3368
+ }>;
3369
+ readonly toTuple: (value: Readonly<{
3370
+ s: NumberPrimitive;
3371
+ d: Diger;
3372
+ }>) => readonly [NumberPrimitive, Diger];
3373
+ readonly toCrew: (value: Readonly<{
3374
+ s: NumberPrimitive;
3375
+ d: Diger;
3376
+ }>) => Readonly<{
3377
+ s: string;
3378
+ d: string;
3379
+ }>;
3380
+ readonly qb64: (value: Readonly<{
3381
+ s: NumberPrimitive;
3382
+ d: Diger;
3383
+ }>) => string;
3384
+ readonly qb64b: (value: Readonly<{
3385
+ s: NumberPrimitive;
3386
+ d: Diger;
3387
+ }>) => Uint8Array;
3388
+ readonly qb2: (value: Readonly<{
3389
+ s: NumberPrimitive;
3390
+ d: Diger;
3391
+ }>) => Uint8Array;
3392
+ }>;
3393
+ readonly SealEvent: Readonly<{
3394
+ readonly isSad: (value: unknown) => value is Readonly<{
3395
+ i: string;
3396
+ s: string;
3397
+ d: string;
3398
+ }>;
3399
+ readonly fromSad: (value: Readonly<{
3400
+ i: string;
3401
+ s: string;
3402
+ d: string;
3403
+ }>) => Readonly<{
3404
+ i: Prefixer;
3405
+ s: NumberPrimitive;
3406
+ d: Diger;
3407
+ }>;
3408
+ readonly toSad: (value: Readonly<{
3409
+ i: Prefixer;
3410
+ s: NumberPrimitive;
3411
+ d: Diger;
3412
+ }>) => Readonly<{
3413
+ i: string;
3414
+ s: string;
3415
+ d: string;
3416
+ }>;
3417
+ readonly name: string;
3418
+ readonly fields: readonly ["i", "s", "d"];
3419
+ readonly cast: Readonly<Record<"d" | "s" | "i", Readonly<{
3420
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3421
+ ipn: string | null;
3422
+ }>>>;
3423
+ readonly coden: StructingCoden;
3424
+ readonly fromTuple: (tuple: readonly [Prefixer, NumberPrimitive, Diger]) => Readonly<{
3425
+ i: Prefixer;
3426
+ s: NumberPrimitive;
3427
+ d: Diger;
3428
+ }>;
3429
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b]) => Readonly<{
3430
+ i: Prefixer;
3431
+ s: NumberPrimitive;
3432
+ d: Diger;
3433
+ }>;
3434
+ readonly toTuple: (value: Readonly<{
3435
+ i: Prefixer;
3436
+ s: NumberPrimitive;
3437
+ d: Diger;
3438
+ }>) => readonly [Prefixer, NumberPrimitive, Diger];
3439
+ readonly toCrew: (value: Readonly<{
3440
+ i: Prefixer;
3441
+ s: NumberPrimitive;
3442
+ d: Diger;
3443
+ }>) => Readonly<{
3444
+ i: string;
3445
+ s: string;
3446
+ d: string;
3447
+ }>;
3448
+ readonly qb64: (value: Readonly<{
3449
+ i: Prefixer;
3450
+ s: NumberPrimitive;
3451
+ d: Diger;
3452
+ }>) => string;
3453
+ readonly qb64b: (value: Readonly<{
3454
+ i: Prefixer;
3455
+ s: NumberPrimitive;
3456
+ d: Diger;
3457
+ }>) => Uint8Array;
3458
+ readonly qb2: (value: Readonly<{
3459
+ i: Prefixer;
3460
+ s: NumberPrimitive;
3461
+ d: Diger;
3462
+ }>) => Uint8Array;
3463
+ }>;
3464
+ readonly SealLast: Readonly<{
3465
+ readonly isSad: (value: unknown) => value is Readonly<{
3466
+ i: string;
3467
+ }>;
3468
+ readonly fromSad: (value: Readonly<{
3469
+ i: string;
3470
+ }>) => Readonly<{
3471
+ i: Prefixer;
3472
+ }>;
3473
+ readonly toSad: (value: Readonly<{
3474
+ i: Prefixer;
3475
+ }>) => Readonly<{
3476
+ i: string;
3477
+ }>;
3478
+ readonly name: string;
3479
+ readonly fields: readonly ["i"];
3480
+ readonly cast: Readonly<Record<"i", Readonly<{
3481
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3482
+ ipn: string | null;
3483
+ }>>>;
3484
+ readonly coden: StructingCoden;
3485
+ readonly fromTuple: (tuple: readonly [Prefixer]) => Readonly<{
3486
+ i: Prefixer;
3487
+ }>;
3488
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
3489
+ i: Prefixer;
3490
+ }>;
3491
+ readonly toTuple: (value: Readonly<{
3492
+ i: Prefixer;
3493
+ }>) => readonly [Prefixer];
3494
+ readonly toCrew: (value: Readonly<{
3495
+ i: Prefixer;
3496
+ }>) => Readonly<{
3497
+ i: string;
3498
+ }>;
3499
+ readonly qb64: (value: Readonly<{
3500
+ i: Prefixer;
3501
+ }>) => string;
3502
+ readonly qb64b: (value: Readonly<{
3503
+ i: Prefixer;
3504
+ }>) => Uint8Array;
3505
+ readonly qb2: (value: Readonly<{
3506
+ i: Prefixer;
3507
+ }>) => Uint8Array;
3508
+ }>;
3509
+ readonly SealBack: Readonly<{
3510
+ readonly isSad: (value: unknown) => value is Readonly<{
3511
+ bi: string;
3512
+ d: string;
3513
+ }>;
3514
+ readonly fromSad: (value: Readonly<{
3515
+ bi: string;
3516
+ d: string;
3517
+ }>) => Readonly<{
3518
+ bi: Prefixer;
3519
+ d: Diger;
3520
+ }>;
3521
+ readonly toSad: (value: Readonly<{
3522
+ bi: Prefixer;
3523
+ d: Diger;
3524
+ }>) => Readonly<{
3525
+ bi: string;
3526
+ d: string;
3527
+ }>;
3528
+ readonly name: string;
3529
+ readonly fields: readonly ["bi", "d"];
3530
+ readonly cast: Readonly<Record<"d" | "bi", Readonly<{
3531
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3532
+ ipn: string | null;
3533
+ }>>>;
3534
+ readonly coden: StructingCoden;
3535
+ readonly fromTuple: (tuple: readonly [Prefixer, Diger]) => Readonly<{
3536
+ bi: Prefixer;
3537
+ d: Diger;
3538
+ }>;
3539
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
3540
+ bi: Prefixer;
3541
+ d: Diger;
3542
+ }>;
3543
+ readonly toTuple: (value: Readonly<{
3544
+ bi: Prefixer;
3545
+ d: Diger;
3546
+ }>) => readonly [Prefixer, Diger];
3547
+ readonly toCrew: (value: Readonly<{
3548
+ bi: Prefixer;
3549
+ d: Diger;
3550
+ }>) => Readonly<{
3551
+ bi: string;
3552
+ d: string;
3553
+ }>;
3554
+ readonly qb64: (value: Readonly<{
3555
+ bi: Prefixer;
3556
+ d: Diger;
3557
+ }>) => string;
3558
+ readonly qb64b: (value: Readonly<{
3559
+ bi: Prefixer;
3560
+ d: Diger;
3561
+ }>) => Uint8Array;
3562
+ readonly qb2: (value: Readonly<{
3563
+ bi: Prefixer;
3564
+ d: Diger;
3565
+ }>) => Uint8Array;
3566
+ }>;
3567
+ readonly SealKind: Readonly<{
3568
+ readonly isSad: (value: unknown) => value is Readonly<{
3569
+ t: string;
3570
+ d: string;
3571
+ }>;
3572
+ readonly fromSad: (value: Readonly<{
3573
+ t: string;
3574
+ d: string;
3575
+ }>) => Readonly<{
3576
+ t: Verser;
3577
+ d: Diger;
3578
+ }>;
3579
+ readonly toSad: (value: Readonly<{
3580
+ t: Verser;
3581
+ d: Diger;
3582
+ }>) => Readonly<{
3583
+ t: string;
3584
+ d: string;
3585
+ }>;
3586
+ readonly name: string;
3587
+ readonly fields: readonly ["t", "d"];
3588
+ readonly cast: Readonly<Record<"d" | "t", Readonly<{
3589
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3590
+ ipn: string | null;
3591
+ }>>>;
3592
+ readonly coden: StructingCoden;
3593
+ readonly fromTuple: (tuple: readonly [Verser, Diger]) => Readonly<{
3594
+ t: Verser;
3595
+ d: Diger;
3596
+ }>;
3597
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
3598
+ t: Verser;
3599
+ d: Diger;
3600
+ }>;
3601
+ readonly toTuple: (value: Readonly<{
3602
+ t: Verser;
3603
+ d: Diger;
3604
+ }>) => readonly [Verser, Diger];
3605
+ readonly toCrew: (value: Readonly<{
3606
+ t: Verser;
3607
+ d: Diger;
3608
+ }>) => Readonly<{
3609
+ t: string;
3610
+ d: string;
3611
+ }>;
3612
+ readonly qb64: (value: Readonly<{
3613
+ t: Verser;
3614
+ d: Diger;
3615
+ }>) => string;
3616
+ readonly qb64b: (value: Readonly<{
3617
+ t: Verser;
3618
+ d: Diger;
3619
+ }>) => Uint8Array;
3620
+ readonly qb2: (value: Readonly<{
3621
+ t: Verser;
3622
+ d: Diger;
3623
+ }>) => Uint8Array;
3624
+ }>;
3625
+ }>;
3626
+ /** All structing cast registries combined into one authoritative CESR view. */
3627
+ export declare const AllCastDom: Readonly<{
3628
+ readonly TypeMedia: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
3629
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3630
+ ipn: string | null;
3631
+ }>>>;
3632
+ readonly BlindState: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
3633
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3634
+ ipn: string | null;
3635
+ }>>>;
3636
+ readonly BoundState: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
3637
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3638
+ ipn: string | null;
3639
+ }>>>;
3640
+ readonly SealDigest: Readonly<Record<"d", Readonly<{
3641
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3642
+ ipn: string | null;
3643
+ }>>>;
3644
+ readonly SealRoot: Readonly<Record<"rd", Readonly<{
3645
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3646
+ ipn: string | null;
3647
+ }>>>;
3648
+ readonly SealSource: Readonly<Record<"d" | "s", Readonly<{
3649
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3650
+ ipn: string | null;
3651
+ }>>>;
3652
+ readonly SealEvent: Readonly<Record<"d" | "s" | "i", Readonly<{
3653
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3654
+ ipn: string | null;
3655
+ }>>>;
3656
+ readonly SealLast: Readonly<Record<"i", Readonly<{
3657
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3658
+ ipn: string | null;
3659
+ }>>>;
3660
+ readonly SealBack: Readonly<Record<"d" | "bi", Readonly<{
3661
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3662
+ ipn: string | null;
3663
+ }>>>;
3664
+ readonly SealKind: Readonly<Record<"d" | "t", Readonly<{
3665
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3666
+ ipn: string | null;
3667
+ }>>>;
3668
+ }>;
3669
+ /** KERIpy alias for `AllCastDom`. */
3670
+ export declare const ACastDom: Readonly<{
3671
+ readonly TypeMedia: Readonly<Record<"d" | "u" | "mt" | "mv", Readonly<{
3672
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3673
+ ipn: string | null;
3674
+ }>>>;
3675
+ readonly BlindState: Readonly<Record<"d" | "u" | "td" | "ts", Readonly<{
3676
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3677
+ ipn: string | null;
3678
+ }>>>;
3679
+ readonly BoundState: Readonly<Record<"d" | "u" | "td" | "ts" | "bn" | "bd", Readonly<{
3680
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3681
+ ipn: string | null;
3682
+ }>>>;
3683
+ readonly SealDigest: Readonly<Record<"d", Readonly<{
3684
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3685
+ ipn: string | null;
3686
+ }>>>;
3687
+ readonly SealRoot: Readonly<Record<"rd", Readonly<{
3688
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3689
+ ipn: string | null;
3690
+ }>>>;
3691
+ readonly SealSource: Readonly<Record<"d" | "s", Readonly<{
3692
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3693
+ ipn: string | null;
3694
+ }>>>;
3695
+ readonly SealEvent: Readonly<Record<"d" | "s" | "i", Readonly<{
3696
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3697
+ ipn: string | null;
3698
+ }>>>;
3699
+ readonly SealLast: Readonly<Record<"i", Readonly<{
3700
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3701
+ ipn: string | null;
3702
+ }>>>;
3703
+ readonly SealBack: Readonly<Record<"d" | "bi", Readonly<{
3704
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3705
+ ipn: string | null;
3706
+ }>>>;
3707
+ readonly SealKind: Readonly<Record<"d" | "t", Readonly<{
3708
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3709
+ ipn: string | null;
3710
+ }>>>;
3711
+ }>;
3712
+ /** All fixed-field structing clan names known to the CESR layer. */
3713
+ export type StructClanName = keyof typeof AllClanDom;
3714
+ /** Fixed-field seal union used by typed KERI seal projections. */
3715
+ export type SealRecord = SealDigest | SealRoot | SealSource | SealEvent | SealLast | SealBack | SealKind;
3716
+ /** Fixed-field structing record union. */
3717
+ export type StructingRecord = SealRecord | BlindState | BoundState | TypeMedia;
3718
+ /** Ordered seal descriptor registry for raw-SAD projection helpers. */
3719
+ export declare const SealDescriptors: readonly [Readonly<{
3720
+ readonly isSad: (value: unknown) => value is Readonly<{
3721
+ d: string;
3722
+ }>;
3723
+ readonly fromSad: (value: Readonly<{
3724
+ d: string;
3725
+ }>) => Readonly<{
3726
+ d: Diger;
3727
+ }>;
3728
+ readonly toSad: (value: Readonly<{
3729
+ d: Diger;
3730
+ }>) => Readonly<{
3731
+ d: string;
3732
+ }>;
3733
+ readonly name: string;
3734
+ readonly fields: readonly ["d"];
3735
+ readonly cast: Readonly<Record<"d", Readonly<{
3736
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3737
+ ipn: string | null;
3738
+ }>>>;
3739
+ readonly coden: StructingCoden;
3740
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
3741
+ d: Diger;
3742
+ }>;
3743
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
3744
+ d: Diger;
3745
+ }>;
3746
+ readonly toTuple: (value: Readonly<{
3747
+ d: Diger;
3748
+ }>) => readonly [Diger];
3749
+ readonly toCrew: (value: Readonly<{
3750
+ d: Diger;
3751
+ }>) => Readonly<{
3752
+ d: string;
3753
+ }>;
3754
+ readonly qb64: (value: Readonly<{
3755
+ d: Diger;
3756
+ }>) => string;
3757
+ readonly qb64b: (value: Readonly<{
3758
+ d: Diger;
3759
+ }>) => Uint8Array;
3760
+ readonly qb2: (value: Readonly<{
3761
+ d: Diger;
3762
+ }>) => Uint8Array;
3763
+ }>, Readonly<{
3764
+ readonly isSad: (value: unknown) => value is Readonly<{
3765
+ rd: string;
3766
+ }>;
3767
+ readonly fromSad: (value: Readonly<{
3768
+ rd: string;
3769
+ }>) => Readonly<{
3770
+ rd: Diger;
3771
+ }>;
3772
+ readonly toSad: (value: Readonly<{
3773
+ rd: Diger;
3774
+ }>) => Readonly<{
3775
+ rd: string;
3776
+ }>;
3777
+ readonly name: string;
3778
+ readonly fields: readonly ["rd"];
3779
+ readonly cast: Readonly<Record<"rd", Readonly<{
3780
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3781
+ ipn: string | null;
3782
+ }>>>;
3783
+ readonly coden: StructingCoden;
3784
+ readonly fromTuple: (tuple: readonly [Diger]) => Readonly<{
3785
+ rd: Diger;
3786
+ }>;
3787
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
3788
+ rd: Diger;
3789
+ }>;
3790
+ readonly toTuple: (value: Readonly<{
3791
+ rd: Diger;
3792
+ }>) => readonly [Diger];
3793
+ readonly toCrew: (value: Readonly<{
3794
+ rd: Diger;
3795
+ }>) => Readonly<{
3796
+ rd: string;
3797
+ }>;
3798
+ readonly qb64: (value: Readonly<{
3799
+ rd: Diger;
3800
+ }>) => string;
3801
+ readonly qb64b: (value: Readonly<{
3802
+ rd: Diger;
3803
+ }>) => Uint8Array;
3804
+ readonly qb2: (value: Readonly<{
3805
+ rd: Diger;
3806
+ }>) => Uint8Array;
3807
+ }>, Readonly<{
3808
+ readonly isSad: (value: unknown) => value is Readonly<{
3809
+ s: string;
3810
+ d: string;
3811
+ }>;
3812
+ readonly fromSad: (value: Readonly<{
3813
+ s: string;
3814
+ d: string;
3815
+ }>) => Readonly<{
3816
+ s: NumberPrimitive;
3817
+ d: Diger;
3818
+ }>;
3819
+ readonly toSad: (value: Readonly<{
3820
+ s: NumberPrimitive;
3821
+ d: Diger;
3822
+ }>) => Readonly<{
3823
+ s: string;
3824
+ d: string;
3825
+ }>;
3826
+ readonly name: string;
3827
+ readonly fields: readonly ["s", "d"];
3828
+ readonly cast: Readonly<Record<"d" | "s", Readonly<{
3829
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3830
+ ipn: string | null;
3831
+ }>>>;
3832
+ readonly coden: StructingCoden;
3833
+ readonly fromTuple: (tuple: readonly [NumberPrimitive, Diger]) => Readonly<{
3834
+ s: NumberPrimitive;
3835
+ d: Diger;
3836
+ }>;
3837
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
3838
+ s: NumberPrimitive;
3839
+ d: Diger;
3840
+ }>;
3841
+ readonly toTuple: (value: Readonly<{
3842
+ s: NumberPrimitive;
3843
+ d: Diger;
3844
+ }>) => readonly [NumberPrimitive, Diger];
3845
+ readonly toCrew: (value: Readonly<{
3846
+ s: NumberPrimitive;
3847
+ d: Diger;
3848
+ }>) => Readonly<{
3849
+ s: string;
3850
+ d: string;
3851
+ }>;
3852
+ readonly qb64: (value: Readonly<{
3853
+ s: NumberPrimitive;
3854
+ d: Diger;
3855
+ }>) => string;
3856
+ readonly qb64b: (value: Readonly<{
3857
+ s: NumberPrimitive;
3858
+ d: Diger;
3859
+ }>) => Uint8Array;
3860
+ readonly qb2: (value: Readonly<{
3861
+ s: NumberPrimitive;
3862
+ d: Diger;
3863
+ }>) => Uint8Array;
3864
+ }>, Readonly<{
3865
+ readonly isSad: (value: unknown) => value is Readonly<{
3866
+ i: string;
3867
+ s: string;
3868
+ d: string;
3869
+ }>;
3870
+ readonly fromSad: (value: Readonly<{
3871
+ i: string;
3872
+ s: string;
3873
+ d: string;
3874
+ }>) => Readonly<{
3875
+ i: Prefixer;
3876
+ s: NumberPrimitive;
3877
+ d: Diger;
3878
+ }>;
3879
+ readonly toSad: (value: Readonly<{
3880
+ i: Prefixer;
3881
+ s: NumberPrimitive;
3882
+ d: Diger;
3883
+ }>) => Readonly<{
3884
+ i: string;
3885
+ s: string;
3886
+ d: string;
3887
+ }>;
3888
+ readonly name: string;
3889
+ readonly fields: readonly ["i", "s", "d"];
3890
+ readonly cast: Readonly<Record<"d" | "s" | "i", Readonly<{
3891
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3892
+ ipn: string | null;
3893
+ }>>>;
3894
+ readonly coden: StructingCoden;
3895
+ readonly fromTuple: (tuple: readonly [Prefixer, NumberPrimitive, Diger]) => Readonly<{
3896
+ i: Prefixer;
3897
+ s: NumberPrimitive;
3898
+ d: Diger;
3899
+ }>;
3900
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b, Qb64b]) => Readonly<{
3901
+ i: Prefixer;
3902
+ s: NumberPrimitive;
3903
+ d: Diger;
3904
+ }>;
3905
+ readonly toTuple: (value: Readonly<{
3906
+ i: Prefixer;
3907
+ s: NumberPrimitive;
3908
+ d: Diger;
3909
+ }>) => readonly [Prefixer, NumberPrimitive, Diger];
3910
+ readonly toCrew: (value: Readonly<{
3911
+ i: Prefixer;
3912
+ s: NumberPrimitive;
3913
+ d: Diger;
3914
+ }>) => Readonly<{
3915
+ i: string;
3916
+ s: string;
3917
+ d: string;
3918
+ }>;
3919
+ readonly qb64: (value: Readonly<{
3920
+ i: Prefixer;
3921
+ s: NumberPrimitive;
3922
+ d: Diger;
3923
+ }>) => string;
3924
+ readonly qb64b: (value: Readonly<{
3925
+ i: Prefixer;
3926
+ s: NumberPrimitive;
3927
+ d: Diger;
3928
+ }>) => Uint8Array;
3929
+ readonly qb2: (value: Readonly<{
3930
+ i: Prefixer;
3931
+ s: NumberPrimitive;
3932
+ d: Diger;
3933
+ }>) => Uint8Array;
3934
+ }>, Readonly<{
3935
+ readonly isSad: (value: unknown) => value is Readonly<{
3936
+ i: string;
3937
+ }>;
3938
+ readonly fromSad: (value: Readonly<{
3939
+ i: string;
3940
+ }>) => Readonly<{
3941
+ i: Prefixer;
3942
+ }>;
3943
+ readonly toSad: (value: Readonly<{
3944
+ i: Prefixer;
3945
+ }>) => Readonly<{
3946
+ i: string;
3947
+ }>;
3948
+ readonly name: string;
3949
+ readonly fields: readonly ["i"];
3950
+ readonly cast: Readonly<Record<"i", Readonly<{
3951
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
3952
+ ipn: string | null;
3953
+ }>>>;
3954
+ readonly coden: StructingCoden;
3955
+ readonly fromTuple: (tuple: readonly [Prefixer]) => Readonly<{
3956
+ i: Prefixer;
3957
+ }>;
3958
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b]) => Readonly<{
3959
+ i: Prefixer;
3960
+ }>;
3961
+ readonly toTuple: (value: Readonly<{
3962
+ i: Prefixer;
3963
+ }>) => readonly [Prefixer];
3964
+ readonly toCrew: (value: Readonly<{
3965
+ i: Prefixer;
3966
+ }>) => Readonly<{
3967
+ i: string;
3968
+ }>;
3969
+ readonly qb64: (value: Readonly<{
3970
+ i: Prefixer;
3971
+ }>) => string;
3972
+ readonly qb64b: (value: Readonly<{
3973
+ i: Prefixer;
3974
+ }>) => Uint8Array;
3975
+ readonly qb2: (value: Readonly<{
3976
+ i: Prefixer;
3977
+ }>) => Uint8Array;
3978
+ }>, Readonly<{
3979
+ readonly isSad: (value: unknown) => value is Readonly<{
3980
+ bi: string;
3981
+ d: string;
3982
+ }>;
3983
+ readonly fromSad: (value: Readonly<{
3984
+ bi: string;
3985
+ d: string;
3986
+ }>) => Readonly<{
3987
+ bi: Prefixer;
3988
+ d: Diger;
3989
+ }>;
3990
+ readonly toSad: (value: Readonly<{
3991
+ bi: Prefixer;
3992
+ d: Diger;
3993
+ }>) => Readonly<{
3994
+ bi: string;
3995
+ d: string;
3996
+ }>;
3997
+ readonly name: string;
3998
+ readonly fields: readonly ["bi", "d"];
3999
+ readonly cast: Readonly<Record<"d" | "bi", Readonly<{
4000
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
4001
+ ipn: string | null;
4002
+ }>>>;
4003
+ readonly coden: StructingCoden;
4004
+ readonly fromTuple: (tuple: readonly [Prefixer, Diger]) => Readonly<{
4005
+ bi: Prefixer;
4006
+ d: Diger;
4007
+ }>;
4008
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
4009
+ bi: Prefixer;
4010
+ d: Diger;
4011
+ }>;
4012
+ readonly toTuple: (value: Readonly<{
4013
+ bi: Prefixer;
4014
+ d: Diger;
4015
+ }>) => readonly [Prefixer, Diger];
4016
+ readonly toCrew: (value: Readonly<{
4017
+ bi: Prefixer;
4018
+ d: Diger;
4019
+ }>) => Readonly<{
4020
+ bi: string;
4021
+ d: string;
4022
+ }>;
4023
+ readonly qb64: (value: Readonly<{
4024
+ bi: Prefixer;
4025
+ d: Diger;
4026
+ }>) => string;
4027
+ readonly qb64b: (value: Readonly<{
4028
+ bi: Prefixer;
4029
+ d: Diger;
4030
+ }>) => Uint8Array;
4031
+ readonly qb2: (value: Readonly<{
4032
+ bi: Prefixer;
4033
+ d: Diger;
4034
+ }>) => Uint8Array;
4035
+ }>, Readonly<{
4036
+ readonly isSad: (value: unknown) => value is Readonly<{
4037
+ t: string;
4038
+ d: string;
4039
+ }>;
4040
+ readonly fromSad: (value: Readonly<{
4041
+ t: string;
4042
+ d: string;
4043
+ }>) => Readonly<{
4044
+ t: Verser;
4045
+ d: Diger;
4046
+ }>;
4047
+ readonly toSad: (value: Readonly<{
4048
+ t: Verser;
4049
+ d: Diger;
4050
+ }>) => Readonly<{
4051
+ t: string;
4052
+ d: string;
4053
+ }>;
4054
+ readonly name: string;
4055
+ readonly fields: readonly ["t", "d"];
4056
+ readonly cast: Readonly<Record<"d" | "t", Readonly<{
4057
+ kls: new (init: Matter | MatterInit) => StructingPrimitive;
4058
+ ipn: string | null;
4059
+ }>>>;
4060
+ readonly coden: StructingCoden;
4061
+ readonly fromTuple: (tuple: readonly [Verser, Diger]) => Readonly<{
4062
+ t: Verser;
4063
+ d: Diger;
4064
+ }>;
4065
+ readonly fromQb64bTuple: (tuple: readonly [Qb64b, Qb64b]) => Readonly<{
4066
+ t: Verser;
4067
+ d: Diger;
4068
+ }>;
4069
+ readonly toTuple: (value: Readonly<{
4070
+ t: Verser;
4071
+ d: Diger;
4072
+ }>) => readonly [Verser, Diger];
4073
+ readonly toCrew: (value: Readonly<{
4074
+ t: Verser;
4075
+ d: Diger;
4076
+ }>) => Readonly<{
4077
+ t: string;
4078
+ d: string;
4079
+ }>;
4080
+ readonly qb64: (value: Readonly<{
4081
+ t: Verser;
4082
+ d: Diger;
4083
+ }>) => string;
4084
+ readonly qb64b: (value: Readonly<{
4085
+ t: Verser;
4086
+ d: Diger;
4087
+ }>) => Uint8Array;
4088
+ readonly qb2: (value: Readonly<{
4089
+ t: Verser;
4090
+ d: Diger;
4091
+ }>) => Uint8Array;
4092
+ }>];
4093
+ /**
4094
+ * Authoritative clan-name -> semantic counter-name map for structing families.
4095
+ *
4096
+ * This mirrors KERIpy `ClanToCodens`, but stores semantic counter names rather
4097
+ * than Python codex members.
4098
+ */
4099
+ export declare const ClanToCodens: Readonly<{
4100
+ readonly SealDigest: StructingCoden;
4101
+ readonly SealRoot: StructingCoden;
4102
+ readonly SealSource: StructingCoden;
4103
+ readonly SealEvent: StructingCoden;
4104
+ readonly SealLast: StructingCoden;
4105
+ readonly SealBack: StructingCoden;
4106
+ readonly SealKind: StructingCoden;
4107
+ readonly BlindState: StructingCoden;
4108
+ readonly BoundState: StructingCoden;
4109
+ readonly TypeMedia: StructingCoden;
4110
+ }>;
4111
+ /** Inverse semantic counter-name -> clan-name registry for structing families. */
4112
+ export declare const CodenToClans: Readonly<Record<StructingCoden, "SealDigest" | "SealRoot" | "SealSource" | "SealEvent" | "SealLast" | "SealBack" | "SealKind" | "BlindState" | "BoundState" | "TypeMedia">>;
4113
+ export {};
4114
+ //# sourceMappingURL=structing.d.ts.map