document-model.js 3.2.0 → 4.0.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 (43) hide show
  1. package/README.md +82 -31
  2. package/dist/codec.d.cts +2 -7
  3. package/dist/codec.d.ts +2 -7
  4. package/dist/content-BN0PWqpt.d.cts +2393 -0
  5. package/dist/content-CiZf6Fqn.d.ts +2393 -0
  6. package/dist/content-json-schema-defs.cjs +1006 -1
  7. package/dist/content-json-schema-defs.js +1006 -1
  8. package/dist/content.cjs +2 -8
  9. package/dist/content.d.cts +2 -2354
  10. package/dist/content.d.ts +2 -2354
  11. package/dist/content.js +2 -8
  12. package/dist/definitions.cjs +109 -0
  13. package/dist/definitions.d.cts +115 -0
  14. package/dist/definitions.d.ts +115 -0
  15. package/dist/definitions.js +99 -0
  16. package/dist/index.cjs +42 -18
  17. package/dist/index.d.cts +7 -6
  18. package/dist/index.d.ts +7 -6
  19. package/dist/index.js +6 -5
  20. package/dist/package-node-DDPSNOvy.d.cts +441 -0
  21. package/dist/package-node-QVFHQcm8.d.ts +441 -0
  22. package/dist/package-node.cjs +120 -0
  23. package/dist/package-node.d.cts +2 -0
  24. package/dist/package-node.d.ts +2 -0
  25. package/dist/package-node.js +93 -0
  26. package/dist/package.cjs +37 -7
  27. package/dist/package.d.cts +452 -755
  28. package/dist/package.d.ts +452 -755
  29. package/dist/package.js +39 -8
  30. package/dist/schema-io.cjs +55 -25
  31. package/dist/schema-io.d.cts +13 -11
  32. package/dist/schema-io.d.ts +13 -11
  33. package/dist/schema-io.js +54 -25
  34. package/dist/style.d.cts +2 -2
  35. package/dist/style.d.ts +2 -2
  36. package/package.json +2 -2
  37. package/schemas/content-document.schema.json +1476 -69
  38. package/schemas/document-package.schema.json +3056 -30
  39. package/dist/layout.cjs +0 -150
  40. package/dist/layout.d.cts +0 -684
  41. package/dist/layout.d.ts +0 -684
  42. package/dist/layout.js +0 -136
  43. package/schemas/layout-document.schema.json +0 -760
@@ -0,0 +1,2393 @@
1
+ import { d as MathMlNode } from "./mathml-B1oTCtzc.cjs";
2
+ import { s as MathExpression } from "./math-B7gZJeND.cjs";
3
+ import { n as Color } from "./color-AELCDH_b.cjs";
4
+ import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.cjs";
5
+ import { z } from "zod";
6
+ //#region src/content.d.ts
7
+ type FusedNode<T> = T & {
8
+ frames?: LayoutFrame[];
9
+ };
10
+ declare const ContentRunSchema: z.ZodObject<{
11
+ text: z.ZodString;
12
+ bold: z.ZodOptional<z.ZodBoolean>;
13
+ italic: z.ZodOptional<z.ZodBoolean>;
14
+ underline: z.ZodOptional<z.ZodBoolean>;
15
+ strike: z.ZodOptional<z.ZodBoolean>;
16
+ fontFamily: z.ZodOptional<z.ZodString>;
17
+ sizePt: z.ZodOptional<z.ZodNumber>;
18
+ color: z.ZodOptional<z.ZodObject<{
19
+ r: z.ZodNumber;
20
+ g: z.ZodNumber;
21
+ b: z.ZodNumber;
22
+ }, z.core.$strip>>;
23
+ hyperlink: z.ZodOptional<z.ZodString>;
24
+ sourcePath: z.ZodOptional<z.ZodString>;
25
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
26
+ pageIndex: z.ZodNumber;
27
+ xPt: z.ZodNumber;
28
+ yPt: z.ZodNumber;
29
+ widthPt: z.ZodNumber;
30
+ heightPt: z.ZodNumber;
31
+ }, z.core.$strip>>>;
32
+ }, z.core.$strip>;
33
+ type ContentRun = z.infer<typeof ContentRunSchema>;
34
+ declare const ContentListMembershipSchema: z.ZodObject<{
35
+ numId: z.ZodOptional<z.ZodString>;
36
+ level: z.ZodNumber;
37
+ }, z.core.$strip>;
38
+ type ContentListMembership = z.infer<typeof ContentListMembershipSchema>;
39
+ declare const ContentParagraphSchema: z.ZodObject<{
40
+ kind: z.ZodLiteral<"paragraph">;
41
+ runs: z.ZodArray<z.ZodObject<{
42
+ text: z.ZodString;
43
+ bold: z.ZodOptional<z.ZodBoolean>;
44
+ italic: z.ZodOptional<z.ZodBoolean>;
45
+ underline: z.ZodOptional<z.ZodBoolean>;
46
+ strike: z.ZodOptional<z.ZodBoolean>;
47
+ fontFamily: z.ZodOptional<z.ZodString>;
48
+ sizePt: z.ZodOptional<z.ZodNumber>;
49
+ color: z.ZodOptional<z.ZodObject<{
50
+ r: z.ZodNumber;
51
+ g: z.ZodNumber;
52
+ b: z.ZodNumber;
53
+ }, z.core.$strip>>;
54
+ hyperlink: z.ZodOptional<z.ZodString>;
55
+ sourcePath: z.ZodOptional<z.ZodString>;
56
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
57
+ pageIndex: z.ZodNumber;
58
+ xPt: z.ZodNumber;
59
+ yPt: z.ZodNumber;
60
+ widthPt: z.ZodNumber;
61
+ heightPt: z.ZodNumber;
62
+ }, z.core.$strip>>>;
63
+ }, z.core.$strip>>;
64
+ styleId: z.ZodOptional<z.ZodString>;
65
+ headingLevel: z.ZodOptional<z.ZodNumber>;
66
+ alignment: z.ZodOptional<z.ZodEnum<{
67
+ left: "left";
68
+ center: "center";
69
+ right: "right";
70
+ justify: "justify";
71
+ }>>;
72
+ list: z.ZodOptional<z.ZodObject<{
73
+ numId: z.ZodOptional<z.ZodString>;
74
+ level: z.ZodNumber;
75
+ }, z.core.$strip>>;
76
+ spacingBeforePt: z.ZodOptional<z.ZodNumber>;
77
+ spacingAfterPt: z.ZodOptional<z.ZodNumber>;
78
+ lineSpacing: z.ZodOptional<z.ZodNumber>;
79
+ indentLeftPt: z.ZodOptional<z.ZodNumber>;
80
+ indentFirstLinePt: z.ZodOptional<z.ZodNumber>;
81
+ sourcePath: z.ZodOptional<z.ZodString>;
82
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
83
+ pageIndex: z.ZodNumber;
84
+ xPt: z.ZodNumber;
85
+ yPt: z.ZodNumber;
86
+ widthPt: z.ZodNumber;
87
+ heightPt: z.ZodNumber;
88
+ }, z.core.$strip>>>;
89
+ }, z.core.$strip>;
90
+ type ContentParagraph = z.infer<typeof ContentParagraphSchema>;
91
+ declare function clampHeadingLevel(level: number): number;
92
+ declare const ContentImageBlockSchema: z.ZodObject<{
93
+ kind: z.ZodLiteral<"image">;
94
+ format: z.ZodEnum<{
95
+ png: "png";
96
+ jpeg: "jpeg";
97
+ }>;
98
+ base64: z.ZodString;
99
+ widthPt: z.ZodNumber;
100
+ heightPt: z.ZodNumber;
101
+ altText: z.ZodOptional<z.ZodString>;
102
+ sourcePath: z.ZodOptional<z.ZodString>;
103
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
104
+ pageIndex: z.ZodNumber;
105
+ xPt: z.ZodNumber;
106
+ yPt: z.ZodNumber;
107
+ widthPt: z.ZodNumber;
108
+ heightPt: z.ZodNumber;
109
+ }, z.core.$strip>>>;
110
+ }, z.core.$strip>;
111
+ type ContentImageBlock = z.infer<typeof ContentImageBlockSchema>;
112
+ declare const ContentPageBreakSchema: z.ZodObject<{
113
+ kind: z.ZodLiteral<"pageBreak">;
114
+ sourcePath: z.ZodOptional<z.ZodString>;
115
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
116
+ pageIndex: z.ZodNumber;
117
+ xPt: z.ZodNumber;
118
+ yPt: z.ZodNumber;
119
+ widthPt: z.ZodNumber;
120
+ heightPt: z.ZodNumber;
121
+ }, z.core.$strip>>>;
122
+ }, z.core.$strip>;
123
+ type ContentPageBreak = z.infer<typeof ContentPageBreakSchema>;
124
+ interface ContentTableCell {
125
+ blocks: ContentBlock[];
126
+ colSpan?: number;
127
+ rowSpan?: number;
128
+ background?: Color;
129
+ borders?: ContentCellBorders;
130
+ sourcePath?: string;
131
+ frames?: LayoutFrame[];
132
+ }
133
+ interface ContentTableRow {
134
+ cells: ContentTableCell[];
135
+ heightPt?: number;
136
+ }
137
+ interface ContentTable {
138
+ kind: 'table';
139
+ rows: ContentTableRow[];
140
+ columnWidthsPt: number[];
141
+ sourcePath?: string;
142
+ frames?: LayoutFrame[];
143
+ }
144
+ type ContentEmbeddedObjectKind = 'formula' | 'wordprocessing' | 'presentation' | 'spreadsheet' | 'drawing';
145
+ interface ContentEmbeddedObject {
146
+ objectKind: ContentEmbeddedObjectKind;
147
+ document: ContentDocument;
148
+ frame: Box;
149
+ anchorRow?: number;
150
+ anchorColumn?: number;
151
+ offsetXPt?: number;
152
+ offsetYPt?: number;
153
+ }
154
+ interface ContentEmbeddedObjectBlock extends ContentEmbeddedObject {
155
+ kind: 'embeddedObject';
156
+ sourcePath?: string;
157
+ frames?: LayoutFrame[];
158
+ }
159
+ type ContentBlock = ContentParagraph | ContentTable | ContentImageBlock | ContentPageBreak | ContentEmbeddedObjectBlock;
160
+ declare function isContentBlock(value: unknown): value is ContentBlock;
161
+ declare const ContentBlockSchema: z.ZodCustom<ContentBlock, ContentBlock>;
162
+ declare const ContentEmbeddedObjectSchema: z.ZodCustom<ContentEmbeddedObject, ContentEmbeddedObject>;
163
+ declare const ContentEmbeddedObjectBlockSchema: z.ZodCustom<ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlock>;
164
+ declare const ContentStrokeStyleSchema: z.ZodEnum<{
165
+ solid: "solid";
166
+ dashed: "dashed";
167
+ dotted: "dotted";
168
+ double: "double";
169
+ }>;
170
+ type ContentStrokeStyle = z.infer<typeof ContentStrokeStyleSchema>;
171
+ declare const ContentBorderSchema: z.ZodObject<{
172
+ color: z.ZodObject<{
173
+ r: z.ZodNumber;
174
+ g: z.ZodNumber;
175
+ b: z.ZodNumber;
176
+ }, z.core.$strip>;
177
+ widthPt: z.ZodNumber;
178
+ style: z.ZodOptional<z.ZodEnum<{
179
+ solid: "solid";
180
+ dashed: "dashed";
181
+ dotted: "dotted";
182
+ double: "double";
183
+ }>>;
184
+ }, z.core.$strip>;
185
+ type ContentBorder = z.infer<typeof ContentBorderSchema>;
186
+ declare const ContentCellBordersSchema: z.ZodObject<{
187
+ left: z.ZodOptional<z.ZodObject<{
188
+ color: z.ZodObject<{
189
+ r: z.ZodNumber;
190
+ g: z.ZodNumber;
191
+ b: z.ZodNumber;
192
+ }, z.core.$strip>;
193
+ widthPt: z.ZodNumber;
194
+ style: z.ZodOptional<z.ZodEnum<{
195
+ solid: "solid";
196
+ dashed: "dashed";
197
+ dotted: "dotted";
198
+ double: "double";
199
+ }>>;
200
+ }, z.core.$strip>>;
201
+ right: z.ZodOptional<z.ZodObject<{
202
+ color: z.ZodObject<{
203
+ r: z.ZodNumber;
204
+ g: z.ZodNumber;
205
+ b: z.ZodNumber;
206
+ }, z.core.$strip>;
207
+ widthPt: z.ZodNumber;
208
+ style: z.ZodOptional<z.ZodEnum<{
209
+ solid: "solid";
210
+ dashed: "dashed";
211
+ dotted: "dotted";
212
+ double: "double";
213
+ }>>;
214
+ }, z.core.$strip>>;
215
+ top: z.ZodOptional<z.ZodObject<{
216
+ color: z.ZodObject<{
217
+ r: z.ZodNumber;
218
+ g: z.ZodNumber;
219
+ b: z.ZodNumber;
220
+ }, z.core.$strip>;
221
+ widthPt: z.ZodNumber;
222
+ style: z.ZodOptional<z.ZodEnum<{
223
+ solid: "solid";
224
+ dashed: "dashed";
225
+ dotted: "dotted";
226
+ double: "double";
227
+ }>>;
228
+ }, z.core.$strip>>;
229
+ bottom: z.ZodOptional<z.ZodObject<{
230
+ color: z.ZodObject<{
231
+ r: z.ZodNumber;
232
+ g: z.ZodNumber;
233
+ b: z.ZodNumber;
234
+ }, z.core.$strip>;
235
+ widthPt: z.ZodNumber;
236
+ style: z.ZodOptional<z.ZodEnum<{
237
+ solid: "solid";
238
+ dashed: "dashed";
239
+ dotted: "dotted";
240
+ double: "double";
241
+ }>>;
242
+ }, z.core.$strip>>;
243
+ }, z.core.$strip>;
244
+ type ContentCellBorders = z.infer<typeof ContentCellBordersSchema>;
245
+ declare const ContentTableCellSchema: z.ZodObject<{
246
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
247
+ colSpan: z.ZodOptional<z.ZodNumber>;
248
+ rowSpan: z.ZodOptional<z.ZodNumber>;
249
+ background: z.ZodOptional<z.ZodObject<{
250
+ r: z.ZodNumber;
251
+ g: z.ZodNumber;
252
+ b: z.ZodNumber;
253
+ }, z.core.$strip>>;
254
+ borders: z.ZodOptional<z.ZodObject<{
255
+ left: z.ZodOptional<z.ZodObject<{
256
+ color: z.ZodObject<{
257
+ r: z.ZodNumber;
258
+ g: z.ZodNumber;
259
+ b: z.ZodNumber;
260
+ }, z.core.$strip>;
261
+ widthPt: z.ZodNumber;
262
+ style: z.ZodOptional<z.ZodEnum<{
263
+ solid: "solid";
264
+ dashed: "dashed";
265
+ dotted: "dotted";
266
+ double: "double";
267
+ }>>;
268
+ }, z.core.$strip>>;
269
+ right: z.ZodOptional<z.ZodObject<{
270
+ color: z.ZodObject<{
271
+ r: z.ZodNumber;
272
+ g: z.ZodNumber;
273
+ b: z.ZodNumber;
274
+ }, z.core.$strip>;
275
+ widthPt: z.ZodNumber;
276
+ style: z.ZodOptional<z.ZodEnum<{
277
+ solid: "solid";
278
+ dashed: "dashed";
279
+ dotted: "dotted";
280
+ double: "double";
281
+ }>>;
282
+ }, z.core.$strip>>;
283
+ top: z.ZodOptional<z.ZodObject<{
284
+ color: z.ZodObject<{
285
+ r: z.ZodNumber;
286
+ g: z.ZodNumber;
287
+ b: z.ZodNumber;
288
+ }, z.core.$strip>;
289
+ widthPt: z.ZodNumber;
290
+ style: z.ZodOptional<z.ZodEnum<{
291
+ solid: "solid";
292
+ dashed: "dashed";
293
+ dotted: "dotted";
294
+ double: "double";
295
+ }>>;
296
+ }, z.core.$strip>>;
297
+ bottom: z.ZodOptional<z.ZodObject<{
298
+ color: z.ZodObject<{
299
+ r: z.ZodNumber;
300
+ g: z.ZodNumber;
301
+ b: z.ZodNumber;
302
+ }, z.core.$strip>;
303
+ widthPt: z.ZodNumber;
304
+ style: z.ZodOptional<z.ZodEnum<{
305
+ solid: "solid";
306
+ dashed: "dashed";
307
+ dotted: "dotted";
308
+ double: "double";
309
+ }>>;
310
+ }, z.core.$strip>>;
311
+ }, z.core.$strip>>;
312
+ sourcePath: z.ZodOptional<z.ZodString>;
313
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
314
+ pageIndex: z.ZodNumber;
315
+ xPt: z.ZodNumber;
316
+ yPt: z.ZodNumber;
317
+ widthPt: z.ZodNumber;
318
+ heightPt: z.ZodNumber;
319
+ }, z.core.$strip>>>;
320
+ }, z.core.$strip>;
321
+ declare const ContentTableRowSchema: z.ZodObject<{
322
+ cells: z.ZodArray<z.ZodObject<{
323
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
324
+ colSpan: z.ZodOptional<z.ZodNumber>;
325
+ rowSpan: z.ZodOptional<z.ZodNumber>;
326
+ background: z.ZodOptional<z.ZodObject<{
327
+ r: z.ZodNumber;
328
+ g: z.ZodNumber;
329
+ b: z.ZodNumber;
330
+ }, z.core.$strip>>;
331
+ borders: z.ZodOptional<z.ZodObject<{
332
+ left: z.ZodOptional<z.ZodObject<{
333
+ color: z.ZodObject<{
334
+ r: z.ZodNumber;
335
+ g: z.ZodNumber;
336
+ b: z.ZodNumber;
337
+ }, z.core.$strip>;
338
+ widthPt: z.ZodNumber;
339
+ style: z.ZodOptional<z.ZodEnum<{
340
+ solid: "solid";
341
+ dashed: "dashed";
342
+ dotted: "dotted";
343
+ double: "double";
344
+ }>>;
345
+ }, z.core.$strip>>;
346
+ right: z.ZodOptional<z.ZodObject<{
347
+ color: z.ZodObject<{
348
+ r: z.ZodNumber;
349
+ g: z.ZodNumber;
350
+ b: z.ZodNumber;
351
+ }, z.core.$strip>;
352
+ widthPt: z.ZodNumber;
353
+ style: z.ZodOptional<z.ZodEnum<{
354
+ solid: "solid";
355
+ dashed: "dashed";
356
+ dotted: "dotted";
357
+ double: "double";
358
+ }>>;
359
+ }, z.core.$strip>>;
360
+ top: z.ZodOptional<z.ZodObject<{
361
+ color: z.ZodObject<{
362
+ r: z.ZodNumber;
363
+ g: z.ZodNumber;
364
+ b: z.ZodNumber;
365
+ }, z.core.$strip>;
366
+ widthPt: z.ZodNumber;
367
+ style: z.ZodOptional<z.ZodEnum<{
368
+ solid: "solid";
369
+ dashed: "dashed";
370
+ dotted: "dotted";
371
+ double: "double";
372
+ }>>;
373
+ }, z.core.$strip>>;
374
+ bottom: z.ZodOptional<z.ZodObject<{
375
+ color: z.ZodObject<{
376
+ r: z.ZodNumber;
377
+ g: z.ZodNumber;
378
+ b: z.ZodNumber;
379
+ }, z.core.$strip>;
380
+ widthPt: z.ZodNumber;
381
+ style: z.ZodOptional<z.ZodEnum<{
382
+ solid: "solid";
383
+ dashed: "dashed";
384
+ dotted: "dotted";
385
+ double: "double";
386
+ }>>;
387
+ }, z.core.$strip>>;
388
+ }, z.core.$strip>>;
389
+ sourcePath: z.ZodOptional<z.ZodString>;
390
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
391
+ pageIndex: z.ZodNumber;
392
+ xPt: z.ZodNumber;
393
+ yPt: z.ZodNumber;
394
+ widthPt: z.ZodNumber;
395
+ heightPt: z.ZodNumber;
396
+ }, z.core.$strip>>>;
397
+ }, z.core.$strip>>;
398
+ heightPt: z.ZodOptional<z.ZodNumber>;
399
+ }, z.core.$strip>;
400
+ declare const ContentTableSchema: z.ZodObject<{
401
+ kind: z.ZodLiteral<"table">;
402
+ rows: z.ZodArray<z.ZodObject<{
403
+ cells: z.ZodArray<z.ZodObject<{
404
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
405
+ colSpan: z.ZodOptional<z.ZodNumber>;
406
+ rowSpan: z.ZodOptional<z.ZodNumber>;
407
+ background: z.ZodOptional<z.ZodObject<{
408
+ r: z.ZodNumber;
409
+ g: z.ZodNumber;
410
+ b: z.ZodNumber;
411
+ }, z.core.$strip>>;
412
+ borders: z.ZodOptional<z.ZodObject<{
413
+ left: z.ZodOptional<z.ZodObject<{
414
+ color: z.ZodObject<{
415
+ r: z.ZodNumber;
416
+ g: z.ZodNumber;
417
+ b: z.ZodNumber;
418
+ }, z.core.$strip>;
419
+ widthPt: z.ZodNumber;
420
+ style: z.ZodOptional<z.ZodEnum<{
421
+ solid: "solid";
422
+ dashed: "dashed";
423
+ dotted: "dotted";
424
+ double: "double";
425
+ }>>;
426
+ }, z.core.$strip>>;
427
+ right: z.ZodOptional<z.ZodObject<{
428
+ color: z.ZodObject<{
429
+ r: z.ZodNumber;
430
+ g: z.ZodNumber;
431
+ b: z.ZodNumber;
432
+ }, z.core.$strip>;
433
+ widthPt: z.ZodNumber;
434
+ style: z.ZodOptional<z.ZodEnum<{
435
+ solid: "solid";
436
+ dashed: "dashed";
437
+ dotted: "dotted";
438
+ double: "double";
439
+ }>>;
440
+ }, z.core.$strip>>;
441
+ top: z.ZodOptional<z.ZodObject<{
442
+ color: z.ZodObject<{
443
+ r: z.ZodNumber;
444
+ g: z.ZodNumber;
445
+ b: z.ZodNumber;
446
+ }, z.core.$strip>;
447
+ widthPt: z.ZodNumber;
448
+ style: z.ZodOptional<z.ZodEnum<{
449
+ solid: "solid";
450
+ dashed: "dashed";
451
+ dotted: "dotted";
452
+ double: "double";
453
+ }>>;
454
+ }, z.core.$strip>>;
455
+ bottom: z.ZodOptional<z.ZodObject<{
456
+ color: z.ZodObject<{
457
+ r: z.ZodNumber;
458
+ g: z.ZodNumber;
459
+ b: z.ZodNumber;
460
+ }, z.core.$strip>;
461
+ widthPt: z.ZodNumber;
462
+ style: z.ZodOptional<z.ZodEnum<{
463
+ solid: "solid";
464
+ dashed: "dashed";
465
+ dotted: "dotted";
466
+ double: "double";
467
+ }>>;
468
+ }, z.core.$strip>>;
469
+ }, z.core.$strip>>;
470
+ sourcePath: z.ZodOptional<z.ZodString>;
471
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
472
+ pageIndex: z.ZodNumber;
473
+ xPt: z.ZodNumber;
474
+ yPt: z.ZodNumber;
475
+ widthPt: z.ZodNumber;
476
+ heightPt: z.ZodNumber;
477
+ }, z.core.$strip>>>;
478
+ }, z.core.$strip>>;
479
+ heightPt: z.ZodOptional<z.ZodNumber>;
480
+ }, z.core.$strip>>;
481
+ columnWidthsPt: z.ZodArray<z.ZodNumber>;
482
+ sourcePath: z.ZodOptional<z.ZodString>;
483
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
484
+ pageIndex: z.ZodNumber;
485
+ xPt: z.ZodNumber;
486
+ yPt: z.ZodNumber;
487
+ widthPt: z.ZodNumber;
488
+ heightPt: z.ZodNumber;
489
+ }, z.core.$strip>>>;
490
+ }, z.core.$strip>;
491
+ declare const ContentSectionSchema: z.ZodObject<{
492
+ pageSize: z.ZodObject<{
493
+ widthPt: z.ZodNumber;
494
+ heightPt: z.ZodNumber;
495
+ }, z.core.$strip>;
496
+ margins: z.ZodObject<{
497
+ topPt: z.ZodNumber;
498
+ rightPt: z.ZodNumber;
499
+ bottomPt: z.ZodNumber;
500
+ leftPt: z.ZodNumber;
501
+ }, z.core.$strip>;
502
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
503
+ }, z.core.$strip>;
504
+ type ContentSection = z.infer<typeof ContentSectionSchema>;
505
+ declare const ContentShapeSchema: z.ZodObject<{
506
+ name: z.ZodOptional<z.ZodString>;
507
+ frame: z.ZodObject<{
508
+ xPt: z.ZodNumber;
509
+ yPt: z.ZodNumber;
510
+ widthPt: z.ZodNumber;
511
+ heightPt: z.ZodNumber;
512
+ }, z.core.$strip>;
513
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
514
+ insetLeftPt: z.ZodNumber;
515
+ insetTopPt: z.ZodNumber;
516
+ insetRightPt: z.ZodNumber;
517
+ insetBottomPt: z.ZodNumber;
518
+ fontScale: z.ZodOptional<z.ZodNumber>;
519
+ lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
520
+ paintOrder: z.ZodOptional<z.ZodNumber>;
521
+ sourcePath: z.ZodOptional<z.ZodString>;
522
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
523
+ pageIndex: z.ZodNumber;
524
+ xPt: z.ZodNumber;
525
+ yPt: z.ZodNumber;
526
+ widthPt: z.ZodNumber;
527
+ heightPt: z.ZodNumber;
528
+ }, z.core.$strip>>>;
529
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
530
+ }, z.core.$strip>;
531
+ type ContentShape = z.infer<typeof ContentShapeSchema>;
532
+ declare const ContentSlideSchema: z.ZodObject<{
533
+ size: z.ZodObject<{
534
+ widthPt: z.ZodNumber;
535
+ heightPt: z.ZodNumber;
536
+ }, z.core.$strip>;
537
+ shapes: z.ZodArray<z.ZodObject<{
538
+ name: z.ZodOptional<z.ZodString>;
539
+ frame: z.ZodObject<{
540
+ xPt: z.ZodNumber;
541
+ yPt: z.ZodNumber;
542
+ widthPt: z.ZodNumber;
543
+ heightPt: z.ZodNumber;
544
+ }, z.core.$strip>;
545
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
546
+ insetLeftPt: z.ZodNumber;
547
+ insetTopPt: z.ZodNumber;
548
+ insetRightPt: z.ZodNumber;
549
+ insetBottomPt: z.ZodNumber;
550
+ fontScale: z.ZodOptional<z.ZodNumber>;
551
+ lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
552
+ paintOrder: z.ZodOptional<z.ZodNumber>;
553
+ sourcePath: z.ZodOptional<z.ZodString>;
554
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
555
+ pageIndex: z.ZodNumber;
556
+ xPt: z.ZodNumber;
557
+ yPt: z.ZodNumber;
558
+ widthPt: z.ZodNumber;
559
+ heightPt: z.ZodNumber;
560
+ }, z.core.$strip>>>;
561
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
562
+ }, z.core.$strip>>;
563
+ notes: z.ZodString;
564
+ }, z.core.$strip>;
565
+ type ContentSlide = z.infer<typeof ContentSlideSchema>;
566
+ declare const DecimalStringSchema: z.ZodString;
567
+ type DecimalString = z.infer<typeof DecimalStringSchema>;
568
+ declare const ContentCellValueSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
569
+ kind: z.ZodLiteral<"number">;
570
+ value: z.ZodNumber;
571
+ exactValue: z.ZodOptional<z.ZodString>;
572
+ }, z.core.$strip>, z.ZodObject<{
573
+ kind: z.ZodLiteral<"percentage">;
574
+ value: z.ZodNumber;
575
+ exactValue: z.ZodOptional<z.ZodString>;
576
+ }, z.core.$strip>, z.ZodObject<{
577
+ kind: z.ZodLiteral<"currency">;
578
+ value: z.ZodNumber;
579
+ currency: z.ZodOptional<z.ZodString>;
580
+ exactValue: z.ZodOptional<z.ZodString>;
581
+ }, z.core.$strip>, z.ZodObject<{
582
+ kind: z.ZodLiteral<"boolean">;
583
+ value: z.ZodBoolean;
584
+ }, z.core.$strip>, z.ZodObject<{
585
+ kind: z.ZodLiteral<"date">;
586
+ value: z.ZodString;
587
+ }, z.core.$strip>, z.ZodObject<{
588
+ kind: z.ZodLiteral<"time">;
589
+ value: z.ZodString;
590
+ }, z.core.$strip>, z.ZodObject<{
591
+ kind: z.ZodLiteral<"dateTime">;
592
+ value: z.ZodString;
593
+ }, z.core.$strip>, z.ZodObject<{
594
+ kind: z.ZodLiteral<"string">;
595
+ value: z.ZodString;
596
+ }, z.core.$strip>, z.ZodObject<{
597
+ kind: z.ZodLiteral<"error">;
598
+ value: z.ZodString;
599
+ }, z.core.$strip>, z.ZodObject<{
600
+ kind: z.ZodLiteral<"empty">;
601
+ }, z.core.$strip>], "kind">;
602
+ type ContentCellValue = z.infer<typeof ContentCellValueSchema>;
603
+ declare const ContentSheetCellCommentSchema: z.ZodObject<{
604
+ text: z.ZodString;
605
+ author: z.ZodOptional<z.ZodString>;
606
+ createdAt: z.ZodOptional<z.ZodString>;
607
+ replies: z.ZodOptional<z.ZodArray<z.ZodObject<{
608
+ text: z.ZodString;
609
+ author: z.ZodOptional<z.ZodString>;
610
+ }, z.core.$strip>>>;
611
+ }, z.core.$strip>;
612
+ type ContentSheetCellComment = z.infer<typeof ContentSheetCellCommentSchema>;
613
+ declare const ContentSheetCellSchema: z.ZodObject<{
614
+ row: z.ZodNumber;
615
+ column: z.ZodNumber;
616
+ value: z.ZodDiscriminatedUnion<[z.ZodObject<{
617
+ kind: z.ZodLiteral<"number">;
618
+ value: z.ZodNumber;
619
+ exactValue: z.ZodOptional<z.ZodString>;
620
+ }, z.core.$strip>, z.ZodObject<{
621
+ kind: z.ZodLiteral<"percentage">;
622
+ value: z.ZodNumber;
623
+ exactValue: z.ZodOptional<z.ZodString>;
624
+ }, z.core.$strip>, z.ZodObject<{
625
+ kind: z.ZodLiteral<"currency">;
626
+ value: z.ZodNumber;
627
+ currency: z.ZodOptional<z.ZodString>;
628
+ exactValue: z.ZodOptional<z.ZodString>;
629
+ }, z.core.$strip>, z.ZodObject<{
630
+ kind: z.ZodLiteral<"boolean">;
631
+ value: z.ZodBoolean;
632
+ }, z.core.$strip>, z.ZodObject<{
633
+ kind: z.ZodLiteral<"date">;
634
+ value: z.ZodString;
635
+ }, z.core.$strip>, z.ZodObject<{
636
+ kind: z.ZodLiteral<"time">;
637
+ value: z.ZodString;
638
+ }, z.core.$strip>, z.ZodObject<{
639
+ kind: z.ZodLiteral<"dateTime">;
640
+ value: z.ZodString;
641
+ }, z.core.$strip>, z.ZodObject<{
642
+ kind: z.ZodLiteral<"string">;
643
+ value: z.ZodString;
644
+ }, z.core.$strip>, z.ZodObject<{
645
+ kind: z.ZodLiteral<"error">;
646
+ value: z.ZodString;
647
+ }, z.core.$strip>, z.ZodObject<{
648
+ kind: z.ZodLiteral<"empty">;
649
+ }, z.core.$strip>], "kind">;
650
+ formula: z.ZodOptional<z.ZodString>;
651
+ displayText: z.ZodString;
652
+ runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
653
+ text: z.ZodString;
654
+ bold: z.ZodOptional<z.ZodBoolean>;
655
+ italic: z.ZodOptional<z.ZodBoolean>;
656
+ underline: z.ZodOptional<z.ZodBoolean>;
657
+ strike: z.ZodOptional<z.ZodBoolean>;
658
+ fontFamily: z.ZodOptional<z.ZodString>;
659
+ sizePt: z.ZodOptional<z.ZodNumber>;
660
+ color: z.ZodOptional<z.ZodObject<{
661
+ r: z.ZodNumber;
662
+ g: z.ZodNumber;
663
+ b: z.ZodNumber;
664
+ }, z.core.$strip>>;
665
+ hyperlink: z.ZodOptional<z.ZodString>;
666
+ sourcePath: z.ZodOptional<z.ZodString>;
667
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
668
+ pageIndex: z.ZodNumber;
669
+ xPt: z.ZodNumber;
670
+ yPt: z.ZodNumber;
671
+ widthPt: z.ZodNumber;
672
+ heightPt: z.ZodNumber;
673
+ }, z.core.$strip>>>;
674
+ }, z.core.$strip>>>;
675
+ colSpan: z.ZodOptional<z.ZodNumber>;
676
+ rowSpan: z.ZodOptional<z.ZodNumber>;
677
+ background: z.ZodOptional<z.ZodObject<{
678
+ r: z.ZodNumber;
679
+ g: z.ZodNumber;
680
+ b: z.ZodNumber;
681
+ }, z.core.$strip>>;
682
+ borders: z.ZodOptional<z.ZodObject<{
683
+ left: z.ZodOptional<z.ZodObject<{
684
+ color: z.ZodObject<{
685
+ r: z.ZodNumber;
686
+ g: z.ZodNumber;
687
+ b: z.ZodNumber;
688
+ }, z.core.$strip>;
689
+ widthPt: z.ZodNumber;
690
+ style: z.ZodOptional<z.ZodEnum<{
691
+ solid: "solid";
692
+ dashed: "dashed";
693
+ dotted: "dotted";
694
+ double: "double";
695
+ }>>;
696
+ }, z.core.$strip>>;
697
+ right: z.ZodOptional<z.ZodObject<{
698
+ color: z.ZodObject<{
699
+ r: z.ZodNumber;
700
+ g: z.ZodNumber;
701
+ b: z.ZodNumber;
702
+ }, z.core.$strip>;
703
+ widthPt: z.ZodNumber;
704
+ style: z.ZodOptional<z.ZodEnum<{
705
+ solid: "solid";
706
+ dashed: "dashed";
707
+ dotted: "dotted";
708
+ double: "double";
709
+ }>>;
710
+ }, z.core.$strip>>;
711
+ top: z.ZodOptional<z.ZodObject<{
712
+ color: z.ZodObject<{
713
+ r: z.ZodNumber;
714
+ g: z.ZodNumber;
715
+ b: z.ZodNumber;
716
+ }, z.core.$strip>;
717
+ widthPt: z.ZodNumber;
718
+ style: z.ZodOptional<z.ZodEnum<{
719
+ solid: "solid";
720
+ dashed: "dashed";
721
+ dotted: "dotted";
722
+ double: "double";
723
+ }>>;
724
+ }, z.core.$strip>>;
725
+ bottom: z.ZodOptional<z.ZodObject<{
726
+ color: z.ZodObject<{
727
+ r: z.ZodNumber;
728
+ g: z.ZodNumber;
729
+ b: z.ZodNumber;
730
+ }, z.core.$strip>;
731
+ widthPt: z.ZodNumber;
732
+ style: z.ZodOptional<z.ZodEnum<{
733
+ solid: "solid";
734
+ dashed: "dashed";
735
+ dotted: "dotted";
736
+ double: "double";
737
+ }>>;
738
+ }, z.core.$strip>>;
739
+ }, z.core.$strip>>;
740
+ alignment: z.ZodOptional<z.ZodEnum<{
741
+ left: "left";
742
+ center: "center";
743
+ right: "right";
744
+ justify: "justify";
745
+ }>>;
746
+ verticalAlignment: z.ZodOptional<z.ZodEnum<{
747
+ top: "top";
748
+ bottom: "bottom";
749
+ middle: "middle";
750
+ }>>;
751
+ comment: z.ZodOptional<z.ZodObject<{
752
+ text: z.ZodString;
753
+ author: z.ZodOptional<z.ZodString>;
754
+ createdAt: z.ZodOptional<z.ZodString>;
755
+ replies: z.ZodOptional<z.ZodArray<z.ZodObject<{
756
+ text: z.ZodString;
757
+ author: z.ZodOptional<z.ZodString>;
758
+ }, z.core.$strip>>>;
759
+ }, z.core.$strip>>;
760
+ sourcePath: z.ZodOptional<z.ZodString>;
761
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
762
+ pageIndex: z.ZodNumber;
763
+ xPt: z.ZodNumber;
764
+ yPt: z.ZodNumber;
765
+ widthPt: z.ZodNumber;
766
+ heightPt: z.ZodNumber;
767
+ }, z.core.$strip>>>;
768
+ }, z.core.$strip>;
769
+ type ContentSheetCell = z.infer<typeof ContentSheetCellSchema>;
770
+ declare const ContentSheetColumnSchema: z.ZodObject<{
771
+ index: z.ZodNumber;
772
+ widthPt: z.ZodOptional<z.ZodNumber>;
773
+ hidden: z.ZodOptional<z.ZodBoolean>;
774
+ }, z.core.$strip>;
775
+ type ContentSheetColumn = z.infer<typeof ContentSheetColumnSchema>;
776
+ declare const ContentSheetRowSchema: z.ZodObject<{
777
+ index: z.ZodNumber;
778
+ heightPt: z.ZodOptional<z.ZodNumber>;
779
+ hidden: z.ZodOptional<z.ZodBoolean>;
780
+ }, z.core.$strip>;
781
+ type ContentSheetRow = z.infer<typeof ContentSheetRowSchema>;
782
+ declare const ContentSheetPrintRangeSchema: z.ZodObject<{
783
+ startRow: z.ZodNumber;
784
+ startColumn: z.ZodNumber;
785
+ endRow: z.ZodNumber;
786
+ endColumn: z.ZodNumber;
787
+ }, z.core.$strip>;
788
+ type ContentSheetPrintRange = z.infer<typeof ContentSheetPrintRangeSchema>;
789
+ declare const ContentSheetRepeatRangeSchema: z.ZodObject<{
790
+ start: z.ZodNumber;
791
+ end: z.ZodNumber;
792
+ }, z.core.$strip>;
793
+ type ContentSheetRepeatRange = z.infer<typeof ContentSheetRepeatRangeSchema>;
794
+ declare const ContentSheetPrintSettingsSchema: z.ZodObject<{
795
+ pageSize: z.ZodObject<{
796
+ widthPt: z.ZodNumber;
797
+ heightPt: z.ZodNumber;
798
+ }, z.core.$strip>;
799
+ margins: z.ZodObject<{
800
+ topPt: z.ZodNumber;
801
+ rightPt: z.ZodNumber;
802
+ bottomPt: z.ZodNumber;
803
+ leftPt: z.ZodNumber;
804
+ }, z.core.$strip>;
805
+ printRange: z.ZodOptional<z.ZodObject<{
806
+ startRow: z.ZodNumber;
807
+ startColumn: z.ZodNumber;
808
+ endRow: z.ZodNumber;
809
+ endColumn: z.ZodNumber;
810
+ }, z.core.$strip>>;
811
+ scalePercent: z.ZodOptional<z.ZodNumber>;
812
+ fitToPages: z.ZodOptional<z.ZodObject<{
813
+ width: z.ZodNumber;
814
+ height: z.ZodNumber;
815
+ }, z.core.$strip>>;
816
+ repeatRows: z.ZodOptional<z.ZodObject<{
817
+ start: z.ZodNumber;
818
+ end: z.ZodNumber;
819
+ }, z.core.$strip>>;
820
+ repeatColumns: z.ZodOptional<z.ZodObject<{
821
+ start: z.ZodNumber;
822
+ end: z.ZodNumber;
823
+ }, z.core.$strip>>;
824
+ gridlines: z.ZodBoolean;
825
+ headers: z.ZodBoolean;
826
+ pageOrder: z.ZodEnum<{
827
+ downThenOver: "downThenOver";
828
+ overThenDown: "overThenDown";
829
+ }>;
830
+ manualBreaks: z.ZodOptional<z.ZodObject<{
831
+ rows: z.ZodArray<z.ZodNumber>;
832
+ columns: z.ZodArray<z.ZodNumber>;
833
+ }, z.core.$strip>>;
834
+ }, z.core.$strip>;
835
+ type ContentSheetPrintSettings = z.infer<typeof ContentSheetPrintSettingsSchema>;
836
+ declare const ContentSheetImageSchema: z.ZodObject<{
837
+ kind: z.ZodLiteral<"image">;
838
+ format: z.ZodEnum<{
839
+ png: "png";
840
+ jpeg: "jpeg";
841
+ }>;
842
+ base64: z.ZodString;
843
+ widthPt: z.ZodNumber;
844
+ heightPt: z.ZodNumber;
845
+ altText: z.ZodOptional<z.ZodString>;
846
+ sourcePath: z.ZodOptional<z.ZodString>;
847
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
848
+ pageIndex: z.ZodNumber;
849
+ xPt: z.ZodNumber;
850
+ yPt: z.ZodNumber;
851
+ widthPt: z.ZodNumber;
852
+ heightPt: z.ZodNumber;
853
+ }, z.core.$strip>>>;
854
+ anchorRow: z.ZodNumber;
855
+ anchorColumn: z.ZodNumber;
856
+ offsetXPt: z.ZodNumber;
857
+ offsetYPt: z.ZodNumber;
858
+ }, z.core.$strip>;
859
+ type ContentSheetImage = z.infer<typeof ContentSheetImageSchema>;
860
+ declare const ContentSheetSchema: z.ZodObject<{
861
+ name: z.ZodString;
862
+ cells: z.ZodArray<z.ZodObject<{
863
+ row: z.ZodNumber;
864
+ column: z.ZodNumber;
865
+ value: z.ZodDiscriminatedUnion<[z.ZodObject<{
866
+ kind: z.ZodLiteral<"number">;
867
+ value: z.ZodNumber;
868
+ exactValue: z.ZodOptional<z.ZodString>;
869
+ }, z.core.$strip>, z.ZodObject<{
870
+ kind: z.ZodLiteral<"percentage">;
871
+ value: z.ZodNumber;
872
+ exactValue: z.ZodOptional<z.ZodString>;
873
+ }, z.core.$strip>, z.ZodObject<{
874
+ kind: z.ZodLiteral<"currency">;
875
+ value: z.ZodNumber;
876
+ currency: z.ZodOptional<z.ZodString>;
877
+ exactValue: z.ZodOptional<z.ZodString>;
878
+ }, z.core.$strip>, z.ZodObject<{
879
+ kind: z.ZodLiteral<"boolean">;
880
+ value: z.ZodBoolean;
881
+ }, z.core.$strip>, z.ZodObject<{
882
+ kind: z.ZodLiteral<"date">;
883
+ value: z.ZodString;
884
+ }, z.core.$strip>, z.ZodObject<{
885
+ kind: z.ZodLiteral<"time">;
886
+ value: z.ZodString;
887
+ }, z.core.$strip>, z.ZodObject<{
888
+ kind: z.ZodLiteral<"dateTime">;
889
+ value: z.ZodString;
890
+ }, z.core.$strip>, z.ZodObject<{
891
+ kind: z.ZodLiteral<"string">;
892
+ value: z.ZodString;
893
+ }, z.core.$strip>, z.ZodObject<{
894
+ kind: z.ZodLiteral<"error">;
895
+ value: z.ZodString;
896
+ }, z.core.$strip>, z.ZodObject<{
897
+ kind: z.ZodLiteral<"empty">;
898
+ }, z.core.$strip>], "kind">;
899
+ formula: z.ZodOptional<z.ZodString>;
900
+ displayText: z.ZodString;
901
+ runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
902
+ text: z.ZodString;
903
+ bold: z.ZodOptional<z.ZodBoolean>;
904
+ italic: z.ZodOptional<z.ZodBoolean>;
905
+ underline: z.ZodOptional<z.ZodBoolean>;
906
+ strike: z.ZodOptional<z.ZodBoolean>;
907
+ fontFamily: z.ZodOptional<z.ZodString>;
908
+ sizePt: z.ZodOptional<z.ZodNumber>;
909
+ color: z.ZodOptional<z.ZodObject<{
910
+ r: z.ZodNumber;
911
+ g: z.ZodNumber;
912
+ b: z.ZodNumber;
913
+ }, z.core.$strip>>;
914
+ hyperlink: z.ZodOptional<z.ZodString>;
915
+ sourcePath: z.ZodOptional<z.ZodString>;
916
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
917
+ pageIndex: z.ZodNumber;
918
+ xPt: z.ZodNumber;
919
+ yPt: z.ZodNumber;
920
+ widthPt: z.ZodNumber;
921
+ heightPt: z.ZodNumber;
922
+ }, z.core.$strip>>>;
923
+ }, z.core.$strip>>>;
924
+ colSpan: z.ZodOptional<z.ZodNumber>;
925
+ rowSpan: z.ZodOptional<z.ZodNumber>;
926
+ background: z.ZodOptional<z.ZodObject<{
927
+ r: z.ZodNumber;
928
+ g: z.ZodNumber;
929
+ b: z.ZodNumber;
930
+ }, z.core.$strip>>;
931
+ borders: z.ZodOptional<z.ZodObject<{
932
+ left: z.ZodOptional<z.ZodObject<{
933
+ color: z.ZodObject<{
934
+ r: z.ZodNumber;
935
+ g: z.ZodNumber;
936
+ b: z.ZodNumber;
937
+ }, z.core.$strip>;
938
+ widthPt: z.ZodNumber;
939
+ style: z.ZodOptional<z.ZodEnum<{
940
+ solid: "solid";
941
+ dashed: "dashed";
942
+ dotted: "dotted";
943
+ double: "double";
944
+ }>>;
945
+ }, z.core.$strip>>;
946
+ right: z.ZodOptional<z.ZodObject<{
947
+ color: z.ZodObject<{
948
+ r: z.ZodNumber;
949
+ g: z.ZodNumber;
950
+ b: z.ZodNumber;
951
+ }, z.core.$strip>;
952
+ widthPt: z.ZodNumber;
953
+ style: z.ZodOptional<z.ZodEnum<{
954
+ solid: "solid";
955
+ dashed: "dashed";
956
+ dotted: "dotted";
957
+ double: "double";
958
+ }>>;
959
+ }, z.core.$strip>>;
960
+ top: z.ZodOptional<z.ZodObject<{
961
+ color: z.ZodObject<{
962
+ r: z.ZodNumber;
963
+ g: z.ZodNumber;
964
+ b: z.ZodNumber;
965
+ }, z.core.$strip>;
966
+ widthPt: z.ZodNumber;
967
+ style: z.ZodOptional<z.ZodEnum<{
968
+ solid: "solid";
969
+ dashed: "dashed";
970
+ dotted: "dotted";
971
+ double: "double";
972
+ }>>;
973
+ }, z.core.$strip>>;
974
+ bottom: z.ZodOptional<z.ZodObject<{
975
+ color: z.ZodObject<{
976
+ r: z.ZodNumber;
977
+ g: z.ZodNumber;
978
+ b: z.ZodNumber;
979
+ }, z.core.$strip>;
980
+ widthPt: z.ZodNumber;
981
+ style: z.ZodOptional<z.ZodEnum<{
982
+ solid: "solid";
983
+ dashed: "dashed";
984
+ dotted: "dotted";
985
+ double: "double";
986
+ }>>;
987
+ }, z.core.$strip>>;
988
+ }, z.core.$strip>>;
989
+ alignment: z.ZodOptional<z.ZodEnum<{
990
+ left: "left";
991
+ center: "center";
992
+ right: "right";
993
+ justify: "justify";
994
+ }>>;
995
+ verticalAlignment: z.ZodOptional<z.ZodEnum<{
996
+ top: "top";
997
+ bottom: "bottom";
998
+ middle: "middle";
999
+ }>>;
1000
+ comment: z.ZodOptional<z.ZodObject<{
1001
+ text: z.ZodString;
1002
+ author: z.ZodOptional<z.ZodString>;
1003
+ createdAt: z.ZodOptional<z.ZodString>;
1004
+ replies: z.ZodOptional<z.ZodArray<z.ZodObject<{
1005
+ text: z.ZodString;
1006
+ author: z.ZodOptional<z.ZodString>;
1007
+ }, z.core.$strip>>>;
1008
+ }, z.core.$strip>>;
1009
+ sourcePath: z.ZodOptional<z.ZodString>;
1010
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1011
+ pageIndex: z.ZodNumber;
1012
+ xPt: z.ZodNumber;
1013
+ yPt: z.ZodNumber;
1014
+ widthPt: z.ZodNumber;
1015
+ heightPt: z.ZodNumber;
1016
+ }, z.core.$strip>>>;
1017
+ }, z.core.$strip>>;
1018
+ columns: z.ZodArray<z.ZodObject<{
1019
+ index: z.ZodNumber;
1020
+ widthPt: z.ZodOptional<z.ZodNumber>;
1021
+ hidden: z.ZodOptional<z.ZodBoolean>;
1022
+ }, z.core.$strip>>;
1023
+ rows: z.ZodArray<z.ZodObject<{
1024
+ index: z.ZodNumber;
1025
+ heightPt: z.ZodOptional<z.ZodNumber>;
1026
+ hidden: z.ZodOptional<z.ZodBoolean>;
1027
+ }, z.core.$strip>>;
1028
+ images: z.ZodArray<z.ZodObject<{
1029
+ kind: z.ZodLiteral<"image">;
1030
+ format: z.ZodEnum<{
1031
+ png: "png";
1032
+ jpeg: "jpeg";
1033
+ }>;
1034
+ base64: z.ZodString;
1035
+ widthPt: z.ZodNumber;
1036
+ heightPt: z.ZodNumber;
1037
+ altText: z.ZodOptional<z.ZodString>;
1038
+ sourcePath: z.ZodOptional<z.ZodString>;
1039
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1040
+ pageIndex: z.ZodNumber;
1041
+ xPt: z.ZodNumber;
1042
+ yPt: z.ZodNumber;
1043
+ widthPt: z.ZodNumber;
1044
+ heightPt: z.ZodNumber;
1045
+ }, z.core.$strip>>>;
1046
+ anchorRow: z.ZodNumber;
1047
+ anchorColumn: z.ZodNumber;
1048
+ offsetXPt: z.ZodNumber;
1049
+ offsetYPt: z.ZodNumber;
1050
+ }, z.core.$strip>>;
1051
+ printSettings: z.ZodObject<{
1052
+ pageSize: z.ZodObject<{
1053
+ widthPt: z.ZodNumber;
1054
+ heightPt: z.ZodNumber;
1055
+ }, z.core.$strip>;
1056
+ margins: z.ZodObject<{
1057
+ topPt: z.ZodNumber;
1058
+ rightPt: z.ZodNumber;
1059
+ bottomPt: z.ZodNumber;
1060
+ leftPt: z.ZodNumber;
1061
+ }, z.core.$strip>;
1062
+ printRange: z.ZodOptional<z.ZodObject<{
1063
+ startRow: z.ZodNumber;
1064
+ startColumn: z.ZodNumber;
1065
+ endRow: z.ZodNumber;
1066
+ endColumn: z.ZodNumber;
1067
+ }, z.core.$strip>>;
1068
+ scalePercent: z.ZodOptional<z.ZodNumber>;
1069
+ fitToPages: z.ZodOptional<z.ZodObject<{
1070
+ width: z.ZodNumber;
1071
+ height: z.ZodNumber;
1072
+ }, z.core.$strip>>;
1073
+ repeatRows: z.ZodOptional<z.ZodObject<{
1074
+ start: z.ZodNumber;
1075
+ end: z.ZodNumber;
1076
+ }, z.core.$strip>>;
1077
+ repeatColumns: z.ZodOptional<z.ZodObject<{
1078
+ start: z.ZodNumber;
1079
+ end: z.ZodNumber;
1080
+ }, z.core.$strip>>;
1081
+ gridlines: z.ZodBoolean;
1082
+ headers: z.ZodBoolean;
1083
+ pageOrder: z.ZodEnum<{
1084
+ downThenOver: "downThenOver";
1085
+ overThenDown: "overThenDown";
1086
+ }>;
1087
+ manualBreaks: z.ZodOptional<z.ZodObject<{
1088
+ rows: z.ZodArray<z.ZodNumber>;
1089
+ columns: z.ZodArray<z.ZodNumber>;
1090
+ }, z.core.$strip>>;
1091
+ }, z.core.$strip>;
1092
+ embeddedObjects: z.ZodOptional<z.ZodArray<z.ZodCustom<ContentEmbeddedObject, ContentEmbeddedObject>>>;
1093
+ }, z.core.$strip>;
1094
+ type ContentSheet = z.infer<typeof ContentSheetSchema>;
1095
+ declare const ContentStrokeSchema: z.ZodObject<{
1096
+ color: z.ZodObject<{
1097
+ r: z.ZodNumber;
1098
+ g: z.ZodNumber;
1099
+ b: z.ZodNumber;
1100
+ }, z.core.$strip>;
1101
+ widthPt: z.ZodNumber;
1102
+ style: z.ZodOptional<z.ZodEnum<{
1103
+ solid: "solid";
1104
+ dashed: "dashed";
1105
+ dotted: "dotted";
1106
+ double: "double";
1107
+ }>>;
1108
+ }, z.core.$strip>;
1109
+ type ContentStroke = z.infer<typeof ContentStrokeSchema>;
1110
+ declare const ContentPathPointSchema: z.ZodObject<{
1111
+ xPt: z.ZodNumber;
1112
+ yPt: z.ZodNumber;
1113
+ }, z.core.$strip>;
1114
+ type ContentPathPoint = z.infer<typeof ContentPathPointSchema>;
1115
+ declare const ContentPathSegmentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1116
+ kind: z.ZodLiteral<"line">;
1117
+ to: z.ZodObject<{
1118
+ xPt: z.ZodNumber;
1119
+ yPt: z.ZodNumber;
1120
+ }, z.core.$strip>;
1121
+ }, z.core.$strip>, z.ZodObject<{
1122
+ kind: z.ZodLiteral<"cubic">;
1123
+ control1: z.ZodObject<{
1124
+ xPt: z.ZodNumber;
1125
+ yPt: z.ZodNumber;
1126
+ }, z.core.$strip>;
1127
+ control2: z.ZodObject<{
1128
+ xPt: z.ZodNumber;
1129
+ yPt: z.ZodNumber;
1130
+ }, z.core.$strip>;
1131
+ to: z.ZodObject<{
1132
+ xPt: z.ZodNumber;
1133
+ yPt: z.ZodNumber;
1134
+ }, z.core.$strip>;
1135
+ }, z.core.$strip>], "kind">;
1136
+ type ContentPathSegment = z.infer<typeof ContentPathSegmentSchema>;
1137
+ declare const ContentSubpathSchema: z.ZodObject<{
1138
+ start: z.ZodObject<{
1139
+ xPt: z.ZodNumber;
1140
+ yPt: z.ZodNumber;
1141
+ }, z.core.$strip>;
1142
+ segments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1143
+ kind: z.ZodLiteral<"line">;
1144
+ to: z.ZodObject<{
1145
+ xPt: z.ZodNumber;
1146
+ yPt: z.ZodNumber;
1147
+ }, z.core.$strip>;
1148
+ }, z.core.$strip>, z.ZodObject<{
1149
+ kind: z.ZodLiteral<"cubic">;
1150
+ control1: z.ZodObject<{
1151
+ xPt: z.ZodNumber;
1152
+ yPt: z.ZodNumber;
1153
+ }, z.core.$strip>;
1154
+ control2: z.ZodObject<{
1155
+ xPt: z.ZodNumber;
1156
+ yPt: z.ZodNumber;
1157
+ }, z.core.$strip>;
1158
+ to: z.ZodObject<{
1159
+ xPt: z.ZodNumber;
1160
+ yPt: z.ZodNumber;
1161
+ }, z.core.$strip>;
1162
+ }, z.core.$strip>], "kind">>;
1163
+ closed: z.ZodBoolean;
1164
+ }, z.core.$strip>;
1165
+ type ContentSubpath = z.infer<typeof ContentSubpathSchema>;
1166
+ declare const ContentVectorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1167
+ kind: z.ZodLiteral<"rect">;
1168
+ frame: z.ZodObject<{
1169
+ xPt: z.ZodNumber;
1170
+ yPt: z.ZodNumber;
1171
+ widthPt: z.ZodNumber;
1172
+ heightPt: z.ZodNumber;
1173
+ }, z.core.$strip>;
1174
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1175
+ fill: z.ZodOptional<z.ZodObject<{
1176
+ r: z.ZodNumber;
1177
+ g: z.ZodNumber;
1178
+ b: z.ZodNumber;
1179
+ }, z.core.$strip>>;
1180
+ stroke: z.ZodOptional<z.ZodObject<{
1181
+ color: z.ZodObject<{
1182
+ r: z.ZodNumber;
1183
+ g: z.ZodNumber;
1184
+ b: z.ZodNumber;
1185
+ }, z.core.$strip>;
1186
+ widthPt: z.ZodNumber;
1187
+ style: z.ZodOptional<z.ZodEnum<{
1188
+ solid: "solid";
1189
+ dashed: "dashed";
1190
+ dotted: "dotted";
1191
+ double: "double";
1192
+ }>>;
1193
+ }, z.core.$strip>>;
1194
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1195
+ sourcePath: z.ZodOptional<z.ZodString>;
1196
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1197
+ pageIndex: z.ZodNumber;
1198
+ xPt: z.ZodNumber;
1199
+ yPt: z.ZodNumber;
1200
+ widthPt: z.ZodNumber;
1201
+ heightPt: z.ZodNumber;
1202
+ }, z.core.$strip>>>;
1203
+ }, z.core.$strip>, z.ZodObject<{
1204
+ kind: z.ZodLiteral<"ellipse">;
1205
+ frame: z.ZodObject<{
1206
+ xPt: z.ZodNumber;
1207
+ yPt: z.ZodNumber;
1208
+ widthPt: z.ZodNumber;
1209
+ heightPt: z.ZodNumber;
1210
+ }, z.core.$strip>;
1211
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1212
+ fill: z.ZodOptional<z.ZodObject<{
1213
+ r: z.ZodNumber;
1214
+ g: z.ZodNumber;
1215
+ b: z.ZodNumber;
1216
+ }, z.core.$strip>>;
1217
+ stroke: z.ZodOptional<z.ZodObject<{
1218
+ color: z.ZodObject<{
1219
+ r: z.ZodNumber;
1220
+ g: z.ZodNumber;
1221
+ b: z.ZodNumber;
1222
+ }, z.core.$strip>;
1223
+ widthPt: z.ZodNumber;
1224
+ style: z.ZodOptional<z.ZodEnum<{
1225
+ solid: "solid";
1226
+ dashed: "dashed";
1227
+ dotted: "dotted";
1228
+ double: "double";
1229
+ }>>;
1230
+ }, z.core.$strip>>;
1231
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1232
+ sourcePath: z.ZodOptional<z.ZodString>;
1233
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1234
+ pageIndex: z.ZodNumber;
1235
+ xPt: z.ZodNumber;
1236
+ yPt: z.ZodNumber;
1237
+ widthPt: z.ZodNumber;
1238
+ heightPt: z.ZodNumber;
1239
+ }, z.core.$strip>>>;
1240
+ }, z.core.$strip>, z.ZodObject<{
1241
+ kind: z.ZodLiteral<"line">;
1242
+ from: z.ZodObject<{
1243
+ xPt: z.ZodNumber;
1244
+ yPt: z.ZodNumber;
1245
+ }, z.core.$strip>;
1246
+ to: z.ZodObject<{
1247
+ xPt: z.ZodNumber;
1248
+ yPt: z.ZodNumber;
1249
+ }, z.core.$strip>;
1250
+ stroke: z.ZodObject<{
1251
+ color: z.ZodObject<{
1252
+ r: z.ZodNumber;
1253
+ g: z.ZodNumber;
1254
+ b: z.ZodNumber;
1255
+ }, z.core.$strip>;
1256
+ widthPt: z.ZodNumber;
1257
+ style: z.ZodOptional<z.ZodEnum<{
1258
+ solid: "solid";
1259
+ dashed: "dashed";
1260
+ dotted: "dotted";
1261
+ double: "double";
1262
+ }>>;
1263
+ }, z.core.$strip>;
1264
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1265
+ sourcePath: z.ZodOptional<z.ZodString>;
1266
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1267
+ pageIndex: z.ZodNumber;
1268
+ xPt: z.ZodNumber;
1269
+ yPt: z.ZodNumber;
1270
+ widthPt: z.ZodNumber;
1271
+ heightPt: z.ZodNumber;
1272
+ }, z.core.$strip>>>;
1273
+ }, z.core.$strip>, z.ZodObject<{
1274
+ kind: z.ZodLiteral<"path">;
1275
+ frame: z.ZodObject<{
1276
+ xPt: z.ZodNumber;
1277
+ yPt: z.ZodNumber;
1278
+ widthPt: z.ZodNumber;
1279
+ heightPt: z.ZodNumber;
1280
+ }, z.core.$strip>;
1281
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1282
+ subpaths: z.ZodArray<z.ZodObject<{
1283
+ start: z.ZodObject<{
1284
+ xPt: z.ZodNumber;
1285
+ yPt: z.ZodNumber;
1286
+ }, z.core.$strip>;
1287
+ segments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1288
+ kind: z.ZodLiteral<"line">;
1289
+ to: z.ZodObject<{
1290
+ xPt: z.ZodNumber;
1291
+ yPt: z.ZodNumber;
1292
+ }, z.core.$strip>;
1293
+ }, z.core.$strip>, z.ZodObject<{
1294
+ kind: z.ZodLiteral<"cubic">;
1295
+ control1: z.ZodObject<{
1296
+ xPt: z.ZodNumber;
1297
+ yPt: z.ZodNumber;
1298
+ }, z.core.$strip>;
1299
+ control2: z.ZodObject<{
1300
+ xPt: z.ZodNumber;
1301
+ yPt: z.ZodNumber;
1302
+ }, z.core.$strip>;
1303
+ to: z.ZodObject<{
1304
+ xPt: z.ZodNumber;
1305
+ yPt: z.ZodNumber;
1306
+ }, z.core.$strip>;
1307
+ }, z.core.$strip>], "kind">>;
1308
+ closed: z.ZodBoolean;
1309
+ }, z.core.$strip>>;
1310
+ fill: z.ZodOptional<z.ZodObject<{
1311
+ r: z.ZodNumber;
1312
+ g: z.ZodNumber;
1313
+ b: z.ZodNumber;
1314
+ }, z.core.$strip>>;
1315
+ fillRule: z.ZodOptional<z.ZodEnum<{
1316
+ nonzero: "nonzero";
1317
+ evenodd: "evenodd";
1318
+ }>>;
1319
+ stroke: z.ZodOptional<z.ZodObject<{
1320
+ color: z.ZodObject<{
1321
+ r: z.ZodNumber;
1322
+ g: z.ZodNumber;
1323
+ b: z.ZodNumber;
1324
+ }, z.core.$strip>;
1325
+ widthPt: z.ZodNumber;
1326
+ style: z.ZodOptional<z.ZodEnum<{
1327
+ solid: "solid";
1328
+ dashed: "dashed";
1329
+ dotted: "dotted";
1330
+ double: "double";
1331
+ }>>;
1332
+ }, z.core.$strip>>;
1333
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1334
+ sourcePath: z.ZodOptional<z.ZodString>;
1335
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1336
+ pageIndex: z.ZodNumber;
1337
+ xPt: z.ZodNumber;
1338
+ yPt: z.ZodNumber;
1339
+ widthPt: z.ZodNumber;
1340
+ heightPt: z.ZodNumber;
1341
+ }, z.core.$strip>>>;
1342
+ }, z.core.$strip>], "kind">;
1343
+ type ContentVector = z.infer<typeof ContentVectorSchema>;
1344
+ declare const ContentDrawPageSchema: z.ZodObject<{
1345
+ size: z.ZodObject<{
1346
+ widthPt: z.ZodNumber;
1347
+ heightPt: z.ZodNumber;
1348
+ }, z.core.$strip>;
1349
+ shapes: z.ZodArray<z.ZodObject<{
1350
+ name: z.ZodOptional<z.ZodString>;
1351
+ frame: z.ZodObject<{
1352
+ xPt: z.ZodNumber;
1353
+ yPt: z.ZodNumber;
1354
+ widthPt: z.ZodNumber;
1355
+ heightPt: z.ZodNumber;
1356
+ }, z.core.$strip>;
1357
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1358
+ insetLeftPt: z.ZodNumber;
1359
+ insetTopPt: z.ZodNumber;
1360
+ insetRightPt: z.ZodNumber;
1361
+ insetBottomPt: z.ZodNumber;
1362
+ fontScale: z.ZodOptional<z.ZodNumber>;
1363
+ lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
1364
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1365
+ sourcePath: z.ZodOptional<z.ZodString>;
1366
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1367
+ pageIndex: z.ZodNumber;
1368
+ xPt: z.ZodNumber;
1369
+ yPt: z.ZodNumber;
1370
+ widthPt: z.ZodNumber;
1371
+ heightPt: z.ZodNumber;
1372
+ }, z.core.$strip>>>;
1373
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
1374
+ }, z.core.$strip>>;
1375
+ vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1376
+ kind: z.ZodLiteral<"rect">;
1377
+ frame: z.ZodObject<{
1378
+ xPt: z.ZodNumber;
1379
+ yPt: z.ZodNumber;
1380
+ widthPt: z.ZodNumber;
1381
+ heightPt: z.ZodNumber;
1382
+ }, z.core.$strip>;
1383
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1384
+ fill: z.ZodOptional<z.ZodObject<{
1385
+ r: z.ZodNumber;
1386
+ g: z.ZodNumber;
1387
+ b: z.ZodNumber;
1388
+ }, z.core.$strip>>;
1389
+ stroke: z.ZodOptional<z.ZodObject<{
1390
+ color: z.ZodObject<{
1391
+ r: z.ZodNumber;
1392
+ g: z.ZodNumber;
1393
+ b: z.ZodNumber;
1394
+ }, z.core.$strip>;
1395
+ widthPt: z.ZodNumber;
1396
+ style: z.ZodOptional<z.ZodEnum<{
1397
+ solid: "solid";
1398
+ dashed: "dashed";
1399
+ dotted: "dotted";
1400
+ double: "double";
1401
+ }>>;
1402
+ }, z.core.$strip>>;
1403
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1404
+ sourcePath: z.ZodOptional<z.ZodString>;
1405
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1406
+ pageIndex: z.ZodNumber;
1407
+ xPt: z.ZodNumber;
1408
+ yPt: z.ZodNumber;
1409
+ widthPt: z.ZodNumber;
1410
+ heightPt: z.ZodNumber;
1411
+ }, z.core.$strip>>>;
1412
+ }, z.core.$strip>, z.ZodObject<{
1413
+ kind: z.ZodLiteral<"ellipse">;
1414
+ frame: z.ZodObject<{
1415
+ xPt: z.ZodNumber;
1416
+ yPt: z.ZodNumber;
1417
+ widthPt: z.ZodNumber;
1418
+ heightPt: z.ZodNumber;
1419
+ }, z.core.$strip>;
1420
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1421
+ fill: z.ZodOptional<z.ZodObject<{
1422
+ r: z.ZodNumber;
1423
+ g: z.ZodNumber;
1424
+ b: z.ZodNumber;
1425
+ }, z.core.$strip>>;
1426
+ stroke: z.ZodOptional<z.ZodObject<{
1427
+ color: z.ZodObject<{
1428
+ r: z.ZodNumber;
1429
+ g: z.ZodNumber;
1430
+ b: z.ZodNumber;
1431
+ }, z.core.$strip>;
1432
+ widthPt: z.ZodNumber;
1433
+ style: z.ZodOptional<z.ZodEnum<{
1434
+ solid: "solid";
1435
+ dashed: "dashed";
1436
+ dotted: "dotted";
1437
+ double: "double";
1438
+ }>>;
1439
+ }, z.core.$strip>>;
1440
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1441
+ sourcePath: z.ZodOptional<z.ZodString>;
1442
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1443
+ pageIndex: z.ZodNumber;
1444
+ xPt: z.ZodNumber;
1445
+ yPt: z.ZodNumber;
1446
+ widthPt: z.ZodNumber;
1447
+ heightPt: z.ZodNumber;
1448
+ }, z.core.$strip>>>;
1449
+ }, z.core.$strip>, z.ZodObject<{
1450
+ kind: z.ZodLiteral<"line">;
1451
+ from: z.ZodObject<{
1452
+ xPt: z.ZodNumber;
1453
+ yPt: z.ZodNumber;
1454
+ }, z.core.$strip>;
1455
+ to: z.ZodObject<{
1456
+ xPt: z.ZodNumber;
1457
+ yPt: z.ZodNumber;
1458
+ }, z.core.$strip>;
1459
+ stroke: z.ZodObject<{
1460
+ color: z.ZodObject<{
1461
+ r: z.ZodNumber;
1462
+ g: z.ZodNumber;
1463
+ b: z.ZodNumber;
1464
+ }, z.core.$strip>;
1465
+ widthPt: z.ZodNumber;
1466
+ style: z.ZodOptional<z.ZodEnum<{
1467
+ solid: "solid";
1468
+ dashed: "dashed";
1469
+ dotted: "dotted";
1470
+ double: "double";
1471
+ }>>;
1472
+ }, z.core.$strip>;
1473
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1474
+ sourcePath: z.ZodOptional<z.ZodString>;
1475
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1476
+ pageIndex: z.ZodNumber;
1477
+ xPt: z.ZodNumber;
1478
+ yPt: z.ZodNumber;
1479
+ widthPt: z.ZodNumber;
1480
+ heightPt: z.ZodNumber;
1481
+ }, z.core.$strip>>>;
1482
+ }, z.core.$strip>, z.ZodObject<{
1483
+ kind: z.ZodLiteral<"path">;
1484
+ frame: z.ZodObject<{
1485
+ xPt: z.ZodNumber;
1486
+ yPt: z.ZodNumber;
1487
+ widthPt: z.ZodNumber;
1488
+ heightPt: z.ZodNumber;
1489
+ }, z.core.$strip>;
1490
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1491
+ subpaths: z.ZodArray<z.ZodObject<{
1492
+ start: z.ZodObject<{
1493
+ xPt: z.ZodNumber;
1494
+ yPt: z.ZodNumber;
1495
+ }, z.core.$strip>;
1496
+ segments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1497
+ kind: z.ZodLiteral<"line">;
1498
+ to: z.ZodObject<{
1499
+ xPt: z.ZodNumber;
1500
+ yPt: z.ZodNumber;
1501
+ }, z.core.$strip>;
1502
+ }, z.core.$strip>, z.ZodObject<{
1503
+ kind: z.ZodLiteral<"cubic">;
1504
+ control1: z.ZodObject<{
1505
+ xPt: z.ZodNumber;
1506
+ yPt: z.ZodNumber;
1507
+ }, z.core.$strip>;
1508
+ control2: z.ZodObject<{
1509
+ xPt: z.ZodNumber;
1510
+ yPt: z.ZodNumber;
1511
+ }, z.core.$strip>;
1512
+ to: z.ZodObject<{
1513
+ xPt: z.ZodNumber;
1514
+ yPt: z.ZodNumber;
1515
+ }, z.core.$strip>;
1516
+ }, z.core.$strip>], "kind">>;
1517
+ closed: z.ZodBoolean;
1518
+ }, z.core.$strip>>;
1519
+ fill: z.ZodOptional<z.ZodObject<{
1520
+ r: z.ZodNumber;
1521
+ g: z.ZodNumber;
1522
+ b: z.ZodNumber;
1523
+ }, z.core.$strip>>;
1524
+ fillRule: z.ZodOptional<z.ZodEnum<{
1525
+ nonzero: "nonzero";
1526
+ evenodd: "evenodd";
1527
+ }>>;
1528
+ stroke: z.ZodOptional<z.ZodObject<{
1529
+ color: z.ZodObject<{
1530
+ r: z.ZodNumber;
1531
+ g: z.ZodNumber;
1532
+ b: z.ZodNumber;
1533
+ }, z.core.$strip>;
1534
+ widthPt: z.ZodNumber;
1535
+ style: z.ZodOptional<z.ZodEnum<{
1536
+ solid: "solid";
1537
+ dashed: "dashed";
1538
+ dotted: "dotted";
1539
+ double: "double";
1540
+ }>>;
1541
+ }, z.core.$strip>>;
1542
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1543
+ sourcePath: z.ZodOptional<z.ZodString>;
1544
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1545
+ pageIndex: z.ZodNumber;
1546
+ xPt: z.ZodNumber;
1547
+ yPt: z.ZodNumber;
1548
+ widthPt: z.ZodNumber;
1549
+ heightPt: z.ZodNumber;
1550
+ }, z.core.$strip>>>;
1551
+ }, z.core.$strip>], "kind">>;
1552
+ }, z.core.$strip>;
1553
+ type ContentDrawPage = z.infer<typeof ContentDrawPageSchema>;
1554
+ declare const ContentFormulaSchema: z.ZodObject<{
1555
+ mathml: z.ZodArray<z.ZodCustom<MathMlNode, MathMlNode>>;
1556
+ starMath: z.ZodOptional<z.ZodString>;
1557
+ presentation: z.ZodOptional<z.ZodObject<{
1558
+ latex: z.ZodString;
1559
+ }, z.core.$strip>>;
1560
+ content: z.ZodOptional<z.ZodCustom<MathExpression, MathExpression>>;
1561
+ provenance: z.ZodOptional<z.ZodObject<{
1562
+ source: z.ZodString;
1563
+ pageRef: z.ZodOptional<z.ZodString>;
1564
+ editTrail: z.ZodArray<z.ZodString>;
1565
+ }, z.core.$strip>>;
1566
+ }, z.core.$strip>;
1567
+ type ContentFormula = z.infer<typeof ContentFormulaSchema>;
1568
+ declare const contentDocumentSharedFields: {
1569
+ symbolTable: z.ZodOptional<z.ZodObject<{
1570
+ symbols: z.ZodArray<z.ZodObject<{
1571
+ glyph: z.ZodString;
1572
+ scope: z.ZodString;
1573
+ id: z.ZodString;
1574
+ quantityKind: z.ZodOptional<z.ZodString>;
1575
+ preferredUnit: z.ZodOptional<z.ZodString>;
1576
+ definitionSource: z.ZodOptional<z.ZodString>;
1577
+ }, z.core.$strip>>;
1578
+ units: z.ZodArray<z.ZodObject<{
1579
+ id: z.ZodString;
1580
+ symbol: z.ZodString;
1581
+ name: z.ZodOptional<z.ZodString>;
1582
+ dimension: z.ZodRecord<z.ZodEnum<{
1583
+ time: "time";
1584
+ length: "length";
1585
+ mass: "mass";
1586
+ electricCurrent: "electricCurrent";
1587
+ thermodynamicTemperature: "thermodynamicTemperature";
1588
+ amountOfSubstance: "amountOfSubstance";
1589
+ luminousIntensity: "luminousIntensity";
1590
+ }> & z.core.$partial, z.ZodNumber>;
1591
+ factorToSi: z.ZodObject<{
1592
+ numerator: z.ZodString;
1593
+ denominator: z.ZodString;
1594
+ }, z.core.$strip>;
1595
+ offsetToSi: z.ZodOptional<z.ZodObject<{
1596
+ numerator: z.ZodString;
1597
+ denominator: z.ZodString;
1598
+ }, z.core.$strip>>;
1599
+ context: z.ZodOptional<z.ZodString>;
1600
+ }, z.core.$strip>>;
1601
+ contexts: z.ZodOptional<z.ZodArray<z.ZodObject<{
1602
+ id: z.ZodString;
1603
+ bases: z.ZodArray<z.ZodObject<{
1604
+ unit: z.ZodString;
1605
+ value: z.ZodObject<{
1606
+ numerator: z.ZodString;
1607
+ denominator: z.ZodString;
1608
+ }, z.core.$strip>;
1609
+ }, z.core.$strip>>;
1610
+ }, z.core.$strip>>>;
1611
+ }, z.core.$strip>>;
1612
+ };
1613
+ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1614
+ sections: z.ZodArray<z.ZodObject<{
1615
+ pageSize: z.ZodObject<{
1616
+ widthPt: z.ZodNumber;
1617
+ heightPt: z.ZodNumber;
1618
+ }, z.core.$strip>;
1619
+ margins: z.ZodObject<{
1620
+ topPt: z.ZodNumber;
1621
+ rightPt: z.ZodNumber;
1622
+ bottomPt: z.ZodNumber;
1623
+ leftPt: z.ZodNumber;
1624
+ }, z.core.$strip>;
1625
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
1626
+ }, z.core.$strip>>;
1627
+ symbolTable: z.ZodOptional<z.ZodObject<{
1628
+ symbols: z.ZodArray<z.ZodObject<{
1629
+ glyph: z.ZodString;
1630
+ scope: z.ZodString;
1631
+ id: z.ZodString;
1632
+ quantityKind: z.ZodOptional<z.ZodString>;
1633
+ preferredUnit: z.ZodOptional<z.ZodString>;
1634
+ definitionSource: z.ZodOptional<z.ZodString>;
1635
+ }, z.core.$strip>>;
1636
+ units: z.ZodArray<z.ZodObject<{
1637
+ id: z.ZodString;
1638
+ symbol: z.ZodString;
1639
+ name: z.ZodOptional<z.ZodString>;
1640
+ dimension: z.ZodRecord<z.ZodEnum<{
1641
+ time: "time";
1642
+ length: "length";
1643
+ mass: "mass";
1644
+ electricCurrent: "electricCurrent";
1645
+ thermodynamicTemperature: "thermodynamicTemperature";
1646
+ amountOfSubstance: "amountOfSubstance";
1647
+ luminousIntensity: "luminousIntensity";
1648
+ }> & z.core.$partial, z.ZodNumber>;
1649
+ factorToSi: z.ZodObject<{
1650
+ numerator: z.ZodString;
1651
+ denominator: z.ZodString;
1652
+ }, z.core.$strip>;
1653
+ offsetToSi: z.ZodOptional<z.ZodObject<{
1654
+ numerator: z.ZodString;
1655
+ denominator: z.ZodString;
1656
+ }, z.core.$strip>>;
1657
+ context: z.ZodOptional<z.ZodString>;
1658
+ }, z.core.$strip>>;
1659
+ contexts: z.ZodOptional<z.ZodArray<z.ZodObject<{
1660
+ id: z.ZodString;
1661
+ bases: z.ZodArray<z.ZodObject<{
1662
+ unit: z.ZodString;
1663
+ value: z.ZodObject<{
1664
+ numerator: z.ZodString;
1665
+ denominator: z.ZodString;
1666
+ }, z.core.$strip>;
1667
+ }, z.core.$strip>>;
1668
+ }, z.core.$strip>>>;
1669
+ }, z.core.$strip>>;
1670
+ kind: z.ZodLiteral<"wordprocessing">;
1671
+ metadata: z.ZodObject<{
1672
+ title: z.ZodOptional<z.ZodString>;
1673
+ author: z.ZodOptional<z.ZodString>;
1674
+ subject: z.ZodOptional<z.ZodString>;
1675
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1676
+ creator: z.ZodOptional<z.ZodString>;
1677
+ producer: z.ZodOptional<z.ZodString>;
1678
+ createdIso: z.ZodOptional<z.ZodString>;
1679
+ modifiedIso: z.ZodOptional<z.ZodString>;
1680
+ }, z.core.$strip>;
1681
+ }, z.core.$strip>, z.ZodObject<{
1682
+ slides: z.ZodArray<z.ZodObject<{
1683
+ size: z.ZodObject<{
1684
+ widthPt: z.ZodNumber;
1685
+ heightPt: z.ZodNumber;
1686
+ }, z.core.$strip>;
1687
+ shapes: z.ZodArray<z.ZodObject<{
1688
+ name: z.ZodOptional<z.ZodString>;
1689
+ frame: z.ZodObject<{
1690
+ xPt: z.ZodNumber;
1691
+ yPt: z.ZodNumber;
1692
+ widthPt: z.ZodNumber;
1693
+ heightPt: z.ZodNumber;
1694
+ }, z.core.$strip>;
1695
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
1696
+ insetLeftPt: z.ZodNumber;
1697
+ insetTopPt: z.ZodNumber;
1698
+ insetRightPt: z.ZodNumber;
1699
+ insetBottomPt: z.ZodNumber;
1700
+ fontScale: z.ZodOptional<z.ZodNumber>;
1701
+ lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
1702
+ paintOrder: z.ZodOptional<z.ZodNumber>;
1703
+ sourcePath: z.ZodOptional<z.ZodString>;
1704
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1705
+ pageIndex: z.ZodNumber;
1706
+ xPt: z.ZodNumber;
1707
+ yPt: z.ZodNumber;
1708
+ widthPt: z.ZodNumber;
1709
+ heightPt: z.ZodNumber;
1710
+ }, z.core.$strip>>>;
1711
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
1712
+ }, z.core.$strip>>;
1713
+ notes: z.ZodString;
1714
+ }, z.core.$strip>>;
1715
+ symbolTable: z.ZodOptional<z.ZodObject<{
1716
+ symbols: z.ZodArray<z.ZodObject<{
1717
+ glyph: z.ZodString;
1718
+ scope: z.ZodString;
1719
+ id: z.ZodString;
1720
+ quantityKind: z.ZodOptional<z.ZodString>;
1721
+ preferredUnit: z.ZodOptional<z.ZodString>;
1722
+ definitionSource: z.ZodOptional<z.ZodString>;
1723
+ }, z.core.$strip>>;
1724
+ units: z.ZodArray<z.ZodObject<{
1725
+ id: z.ZodString;
1726
+ symbol: z.ZodString;
1727
+ name: z.ZodOptional<z.ZodString>;
1728
+ dimension: z.ZodRecord<z.ZodEnum<{
1729
+ time: "time";
1730
+ length: "length";
1731
+ mass: "mass";
1732
+ electricCurrent: "electricCurrent";
1733
+ thermodynamicTemperature: "thermodynamicTemperature";
1734
+ amountOfSubstance: "amountOfSubstance";
1735
+ luminousIntensity: "luminousIntensity";
1736
+ }> & z.core.$partial, z.ZodNumber>;
1737
+ factorToSi: z.ZodObject<{
1738
+ numerator: z.ZodString;
1739
+ denominator: z.ZodString;
1740
+ }, z.core.$strip>;
1741
+ offsetToSi: z.ZodOptional<z.ZodObject<{
1742
+ numerator: z.ZodString;
1743
+ denominator: z.ZodString;
1744
+ }, z.core.$strip>>;
1745
+ context: z.ZodOptional<z.ZodString>;
1746
+ }, z.core.$strip>>;
1747
+ contexts: z.ZodOptional<z.ZodArray<z.ZodObject<{
1748
+ id: z.ZodString;
1749
+ bases: z.ZodArray<z.ZodObject<{
1750
+ unit: z.ZodString;
1751
+ value: z.ZodObject<{
1752
+ numerator: z.ZodString;
1753
+ denominator: z.ZodString;
1754
+ }, z.core.$strip>;
1755
+ }, z.core.$strip>>;
1756
+ }, z.core.$strip>>>;
1757
+ }, z.core.$strip>>;
1758
+ kind: z.ZodLiteral<"presentation">;
1759
+ metadata: z.ZodObject<{
1760
+ title: z.ZodOptional<z.ZodString>;
1761
+ author: z.ZodOptional<z.ZodString>;
1762
+ subject: z.ZodOptional<z.ZodString>;
1763
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1764
+ creator: z.ZodOptional<z.ZodString>;
1765
+ producer: z.ZodOptional<z.ZodString>;
1766
+ createdIso: z.ZodOptional<z.ZodString>;
1767
+ modifiedIso: z.ZodOptional<z.ZodString>;
1768
+ }, z.core.$strip>;
1769
+ }, z.core.$strip>, z.ZodObject<{
1770
+ sheets: z.ZodArray<z.ZodObject<{
1771
+ name: z.ZodString;
1772
+ cells: z.ZodArray<z.ZodObject<{
1773
+ row: z.ZodNumber;
1774
+ column: z.ZodNumber;
1775
+ value: z.ZodDiscriminatedUnion<[z.ZodObject<{
1776
+ kind: z.ZodLiteral<"number">;
1777
+ value: z.ZodNumber;
1778
+ exactValue: z.ZodOptional<z.ZodString>;
1779
+ }, z.core.$strip>, z.ZodObject<{
1780
+ kind: z.ZodLiteral<"percentage">;
1781
+ value: z.ZodNumber;
1782
+ exactValue: z.ZodOptional<z.ZodString>;
1783
+ }, z.core.$strip>, z.ZodObject<{
1784
+ kind: z.ZodLiteral<"currency">;
1785
+ value: z.ZodNumber;
1786
+ currency: z.ZodOptional<z.ZodString>;
1787
+ exactValue: z.ZodOptional<z.ZodString>;
1788
+ }, z.core.$strip>, z.ZodObject<{
1789
+ kind: z.ZodLiteral<"boolean">;
1790
+ value: z.ZodBoolean;
1791
+ }, z.core.$strip>, z.ZodObject<{
1792
+ kind: z.ZodLiteral<"date">;
1793
+ value: z.ZodString;
1794
+ }, z.core.$strip>, z.ZodObject<{
1795
+ kind: z.ZodLiteral<"time">;
1796
+ value: z.ZodString;
1797
+ }, z.core.$strip>, z.ZodObject<{
1798
+ kind: z.ZodLiteral<"dateTime">;
1799
+ value: z.ZodString;
1800
+ }, z.core.$strip>, z.ZodObject<{
1801
+ kind: z.ZodLiteral<"string">;
1802
+ value: z.ZodString;
1803
+ }, z.core.$strip>, z.ZodObject<{
1804
+ kind: z.ZodLiteral<"error">;
1805
+ value: z.ZodString;
1806
+ }, z.core.$strip>, z.ZodObject<{
1807
+ kind: z.ZodLiteral<"empty">;
1808
+ }, z.core.$strip>], "kind">;
1809
+ formula: z.ZodOptional<z.ZodString>;
1810
+ displayText: z.ZodString;
1811
+ runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1812
+ text: z.ZodString;
1813
+ bold: z.ZodOptional<z.ZodBoolean>;
1814
+ italic: z.ZodOptional<z.ZodBoolean>;
1815
+ underline: z.ZodOptional<z.ZodBoolean>;
1816
+ strike: z.ZodOptional<z.ZodBoolean>;
1817
+ fontFamily: z.ZodOptional<z.ZodString>;
1818
+ sizePt: z.ZodOptional<z.ZodNumber>;
1819
+ color: z.ZodOptional<z.ZodObject<{
1820
+ r: z.ZodNumber;
1821
+ g: z.ZodNumber;
1822
+ b: z.ZodNumber;
1823
+ }, z.core.$strip>>;
1824
+ hyperlink: z.ZodOptional<z.ZodString>;
1825
+ sourcePath: z.ZodOptional<z.ZodString>;
1826
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1827
+ pageIndex: z.ZodNumber;
1828
+ xPt: z.ZodNumber;
1829
+ yPt: z.ZodNumber;
1830
+ widthPt: z.ZodNumber;
1831
+ heightPt: z.ZodNumber;
1832
+ }, z.core.$strip>>>;
1833
+ }, z.core.$strip>>>;
1834
+ colSpan: z.ZodOptional<z.ZodNumber>;
1835
+ rowSpan: z.ZodOptional<z.ZodNumber>;
1836
+ background: z.ZodOptional<z.ZodObject<{
1837
+ r: z.ZodNumber;
1838
+ g: z.ZodNumber;
1839
+ b: z.ZodNumber;
1840
+ }, z.core.$strip>>;
1841
+ borders: z.ZodOptional<z.ZodObject<{
1842
+ left: z.ZodOptional<z.ZodObject<{
1843
+ color: z.ZodObject<{
1844
+ r: z.ZodNumber;
1845
+ g: z.ZodNumber;
1846
+ b: z.ZodNumber;
1847
+ }, z.core.$strip>;
1848
+ widthPt: z.ZodNumber;
1849
+ style: z.ZodOptional<z.ZodEnum<{
1850
+ solid: "solid";
1851
+ dashed: "dashed";
1852
+ dotted: "dotted";
1853
+ double: "double";
1854
+ }>>;
1855
+ }, z.core.$strip>>;
1856
+ right: z.ZodOptional<z.ZodObject<{
1857
+ color: z.ZodObject<{
1858
+ r: z.ZodNumber;
1859
+ g: z.ZodNumber;
1860
+ b: z.ZodNumber;
1861
+ }, z.core.$strip>;
1862
+ widthPt: z.ZodNumber;
1863
+ style: z.ZodOptional<z.ZodEnum<{
1864
+ solid: "solid";
1865
+ dashed: "dashed";
1866
+ dotted: "dotted";
1867
+ double: "double";
1868
+ }>>;
1869
+ }, z.core.$strip>>;
1870
+ top: z.ZodOptional<z.ZodObject<{
1871
+ color: z.ZodObject<{
1872
+ r: z.ZodNumber;
1873
+ g: z.ZodNumber;
1874
+ b: z.ZodNumber;
1875
+ }, z.core.$strip>;
1876
+ widthPt: z.ZodNumber;
1877
+ style: z.ZodOptional<z.ZodEnum<{
1878
+ solid: "solid";
1879
+ dashed: "dashed";
1880
+ dotted: "dotted";
1881
+ double: "double";
1882
+ }>>;
1883
+ }, z.core.$strip>>;
1884
+ bottom: z.ZodOptional<z.ZodObject<{
1885
+ color: z.ZodObject<{
1886
+ r: z.ZodNumber;
1887
+ g: z.ZodNumber;
1888
+ b: z.ZodNumber;
1889
+ }, z.core.$strip>;
1890
+ widthPt: z.ZodNumber;
1891
+ style: z.ZodOptional<z.ZodEnum<{
1892
+ solid: "solid";
1893
+ dashed: "dashed";
1894
+ dotted: "dotted";
1895
+ double: "double";
1896
+ }>>;
1897
+ }, z.core.$strip>>;
1898
+ }, z.core.$strip>>;
1899
+ alignment: z.ZodOptional<z.ZodEnum<{
1900
+ left: "left";
1901
+ center: "center";
1902
+ right: "right";
1903
+ justify: "justify";
1904
+ }>>;
1905
+ verticalAlignment: z.ZodOptional<z.ZodEnum<{
1906
+ top: "top";
1907
+ bottom: "bottom";
1908
+ middle: "middle";
1909
+ }>>;
1910
+ comment: z.ZodOptional<z.ZodObject<{
1911
+ text: z.ZodString;
1912
+ author: z.ZodOptional<z.ZodString>;
1913
+ createdAt: z.ZodOptional<z.ZodString>;
1914
+ replies: z.ZodOptional<z.ZodArray<z.ZodObject<{
1915
+ text: z.ZodString;
1916
+ author: z.ZodOptional<z.ZodString>;
1917
+ }, z.core.$strip>>>;
1918
+ }, z.core.$strip>>;
1919
+ sourcePath: z.ZodOptional<z.ZodString>;
1920
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1921
+ pageIndex: z.ZodNumber;
1922
+ xPt: z.ZodNumber;
1923
+ yPt: z.ZodNumber;
1924
+ widthPt: z.ZodNumber;
1925
+ heightPt: z.ZodNumber;
1926
+ }, z.core.$strip>>>;
1927
+ }, z.core.$strip>>;
1928
+ columns: z.ZodArray<z.ZodObject<{
1929
+ index: z.ZodNumber;
1930
+ widthPt: z.ZodOptional<z.ZodNumber>;
1931
+ hidden: z.ZodOptional<z.ZodBoolean>;
1932
+ }, z.core.$strip>>;
1933
+ rows: z.ZodArray<z.ZodObject<{
1934
+ index: z.ZodNumber;
1935
+ heightPt: z.ZodOptional<z.ZodNumber>;
1936
+ hidden: z.ZodOptional<z.ZodBoolean>;
1937
+ }, z.core.$strip>>;
1938
+ images: z.ZodArray<z.ZodObject<{
1939
+ kind: z.ZodLiteral<"image">;
1940
+ format: z.ZodEnum<{
1941
+ png: "png";
1942
+ jpeg: "jpeg";
1943
+ }>;
1944
+ base64: z.ZodString;
1945
+ widthPt: z.ZodNumber;
1946
+ heightPt: z.ZodNumber;
1947
+ altText: z.ZodOptional<z.ZodString>;
1948
+ sourcePath: z.ZodOptional<z.ZodString>;
1949
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
1950
+ pageIndex: z.ZodNumber;
1951
+ xPt: z.ZodNumber;
1952
+ yPt: z.ZodNumber;
1953
+ widthPt: z.ZodNumber;
1954
+ heightPt: z.ZodNumber;
1955
+ }, z.core.$strip>>>;
1956
+ anchorRow: z.ZodNumber;
1957
+ anchorColumn: z.ZodNumber;
1958
+ offsetXPt: z.ZodNumber;
1959
+ offsetYPt: z.ZodNumber;
1960
+ }, z.core.$strip>>;
1961
+ printSettings: z.ZodObject<{
1962
+ pageSize: z.ZodObject<{
1963
+ widthPt: z.ZodNumber;
1964
+ heightPt: z.ZodNumber;
1965
+ }, z.core.$strip>;
1966
+ margins: z.ZodObject<{
1967
+ topPt: z.ZodNumber;
1968
+ rightPt: z.ZodNumber;
1969
+ bottomPt: z.ZodNumber;
1970
+ leftPt: z.ZodNumber;
1971
+ }, z.core.$strip>;
1972
+ printRange: z.ZodOptional<z.ZodObject<{
1973
+ startRow: z.ZodNumber;
1974
+ startColumn: z.ZodNumber;
1975
+ endRow: z.ZodNumber;
1976
+ endColumn: z.ZodNumber;
1977
+ }, z.core.$strip>>;
1978
+ scalePercent: z.ZodOptional<z.ZodNumber>;
1979
+ fitToPages: z.ZodOptional<z.ZodObject<{
1980
+ width: z.ZodNumber;
1981
+ height: z.ZodNumber;
1982
+ }, z.core.$strip>>;
1983
+ repeatRows: z.ZodOptional<z.ZodObject<{
1984
+ start: z.ZodNumber;
1985
+ end: z.ZodNumber;
1986
+ }, z.core.$strip>>;
1987
+ repeatColumns: z.ZodOptional<z.ZodObject<{
1988
+ start: z.ZodNumber;
1989
+ end: z.ZodNumber;
1990
+ }, z.core.$strip>>;
1991
+ gridlines: z.ZodBoolean;
1992
+ headers: z.ZodBoolean;
1993
+ pageOrder: z.ZodEnum<{
1994
+ downThenOver: "downThenOver";
1995
+ overThenDown: "overThenDown";
1996
+ }>;
1997
+ manualBreaks: z.ZodOptional<z.ZodObject<{
1998
+ rows: z.ZodArray<z.ZodNumber>;
1999
+ columns: z.ZodArray<z.ZodNumber>;
2000
+ }, z.core.$strip>>;
2001
+ }, z.core.$strip>;
2002
+ embeddedObjects: z.ZodOptional<z.ZodArray<z.ZodCustom<ContentEmbeddedObject, ContentEmbeddedObject>>>;
2003
+ }, z.core.$strip>>;
2004
+ symbolTable: z.ZodOptional<z.ZodObject<{
2005
+ symbols: z.ZodArray<z.ZodObject<{
2006
+ glyph: z.ZodString;
2007
+ scope: z.ZodString;
2008
+ id: z.ZodString;
2009
+ quantityKind: z.ZodOptional<z.ZodString>;
2010
+ preferredUnit: z.ZodOptional<z.ZodString>;
2011
+ definitionSource: z.ZodOptional<z.ZodString>;
2012
+ }, z.core.$strip>>;
2013
+ units: z.ZodArray<z.ZodObject<{
2014
+ id: z.ZodString;
2015
+ symbol: z.ZodString;
2016
+ name: z.ZodOptional<z.ZodString>;
2017
+ dimension: z.ZodRecord<z.ZodEnum<{
2018
+ time: "time";
2019
+ length: "length";
2020
+ mass: "mass";
2021
+ electricCurrent: "electricCurrent";
2022
+ thermodynamicTemperature: "thermodynamicTemperature";
2023
+ amountOfSubstance: "amountOfSubstance";
2024
+ luminousIntensity: "luminousIntensity";
2025
+ }> & z.core.$partial, z.ZodNumber>;
2026
+ factorToSi: z.ZodObject<{
2027
+ numerator: z.ZodString;
2028
+ denominator: z.ZodString;
2029
+ }, z.core.$strip>;
2030
+ offsetToSi: z.ZodOptional<z.ZodObject<{
2031
+ numerator: z.ZodString;
2032
+ denominator: z.ZodString;
2033
+ }, z.core.$strip>>;
2034
+ context: z.ZodOptional<z.ZodString>;
2035
+ }, z.core.$strip>>;
2036
+ contexts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2037
+ id: z.ZodString;
2038
+ bases: z.ZodArray<z.ZodObject<{
2039
+ unit: z.ZodString;
2040
+ value: z.ZodObject<{
2041
+ numerator: z.ZodString;
2042
+ denominator: z.ZodString;
2043
+ }, z.core.$strip>;
2044
+ }, z.core.$strip>>;
2045
+ }, z.core.$strip>>>;
2046
+ }, z.core.$strip>>;
2047
+ kind: z.ZodLiteral<"spreadsheet">;
2048
+ metadata: z.ZodObject<{
2049
+ title: z.ZodOptional<z.ZodString>;
2050
+ author: z.ZodOptional<z.ZodString>;
2051
+ subject: z.ZodOptional<z.ZodString>;
2052
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
2053
+ creator: z.ZodOptional<z.ZodString>;
2054
+ producer: z.ZodOptional<z.ZodString>;
2055
+ createdIso: z.ZodOptional<z.ZodString>;
2056
+ modifiedIso: z.ZodOptional<z.ZodString>;
2057
+ }, z.core.$strip>;
2058
+ }, z.core.$strip>, z.ZodObject<{
2059
+ pages: z.ZodArray<z.ZodObject<{
2060
+ size: z.ZodObject<{
2061
+ widthPt: z.ZodNumber;
2062
+ heightPt: z.ZodNumber;
2063
+ }, z.core.$strip>;
2064
+ shapes: z.ZodArray<z.ZodObject<{
2065
+ name: z.ZodOptional<z.ZodString>;
2066
+ frame: z.ZodObject<{
2067
+ xPt: z.ZodNumber;
2068
+ yPt: z.ZodNumber;
2069
+ widthPt: z.ZodNumber;
2070
+ heightPt: z.ZodNumber;
2071
+ }, z.core.$strip>;
2072
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
2073
+ insetLeftPt: z.ZodNumber;
2074
+ insetTopPt: z.ZodNumber;
2075
+ insetRightPt: z.ZodNumber;
2076
+ insetBottomPt: z.ZodNumber;
2077
+ fontScale: z.ZodOptional<z.ZodNumber>;
2078
+ lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
2079
+ paintOrder: z.ZodOptional<z.ZodNumber>;
2080
+ sourcePath: z.ZodOptional<z.ZodString>;
2081
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
2082
+ pageIndex: z.ZodNumber;
2083
+ xPt: z.ZodNumber;
2084
+ yPt: z.ZodNumber;
2085
+ widthPt: z.ZodNumber;
2086
+ heightPt: z.ZodNumber;
2087
+ }, z.core.$strip>>>;
2088
+ blocks: z.ZodArray<z.ZodCustom<ContentBlock, ContentBlock>>;
2089
+ }, z.core.$strip>>;
2090
+ vectors: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2091
+ kind: z.ZodLiteral<"rect">;
2092
+ frame: z.ZodObject<{
2093
+ xPt: z.ZodNumber;
2094
+ yPt: z.ZodNumber;
2095
+ widthPt: z.ZodNumber;
2096
+ heightPt: z.ZodNumber;
2097
+ }, z.core.$strip>;
2098
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
2099
+ fill: z.ZodOptional<z.ZodObject<{
2100
+ r: z.ZodNumber;
2101
+ g: z.ZodNumber;
2102
+ b: z.ZodNumber;
2103
+ }, z.core.$strip>>;
2104
+ stroke: z.ZodOptional<z.ZodObject<{
2105
+ color: z.ZodObject<{
2106
+ r: z.ZodNumber;
2107
+ g: z.ZodNumber;
2108
+ b: z.ZodNumber;
2109
+ }, z.core.$strip>;
2110
+ widthPt: z.ZodNumber;
2111
+ style: z.ZodOptional<z.ZodEnum<{
2112
+ solid: "solid";
2113
+ dashed: "dashed";
2114
+ dotted: "dotted";
2115
+ double: "double";
2116
+ }>>;
2117
+ }, z.core.$strip>>;
2118
+ paintOrder: z.ZodOptional<z.ZodNumber>;
2119
+ sourcePath: z.ZodOptional<z.ZodString>;
2120
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
2121
+ pageIndex: z.ZodNumber;
2122
+ xPt: z.ZodNumber;
2123
+ yPt: z.ZodNumber;
2124
+ widthPt: z.ZodNumber;
2125
+ heightPt: z.ZodNumber;
2126
+ }, z.core.$strip>>>;
2127
+ }, z.core.$strip>, z.ZodObject<{
2128
+ kind: z.ZodLiteral<"ellipse">;
2129
+ frame: z.ZodObject<{
2130
+ xPt: z.ZodNumber;
2131
+ yPt: z.ZodNumber;
2132
+ widthPt: z.ZodNumber;
2133
+ heightPt: z.ZodNumber;
2134
+ }, z.core.$strip>;
2135
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
2136
+ fill: z.ZodOptional<z.ZodObject<{
2137
+ r: z.ZodNumber;
2138
+ g: z.ZodNumber;
2139
+ b: z.ZodNumber;
2140
+ }, z.core.$strip>>;
2141
+ stroke: z.ZodOptional<z.ZodObject<{
2142
+ color: z.ZodObject<{
2143
+ r: z.ZodNumber;
2144
+ g: z.ZodNumber;
2145
+ b: z.ZodNumber;
2146
+ }, z.core.$strip>;
2147
+ widthPt: z.ZodNumber;
2148
+ style: z.ZodOptional<z.ZodEnum<{
2149
+ solid: "solid";
2150
+ dashed: "dashed";
2151
+ dotted: "dotted";
2152
+ double: "double";
2153
+ }>>;
2154
+ }, z.core.$strip>>;
2155
+ paintOrder: z.ZodOptional<z.ZodNumber>;
2156
+ sourcePath: z.ZodOptional<z.ZodString>;
2157
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
2158
+ pageIndex: z.ZodNumber;
2159
+ xPt: z.ZodNumber;
2160
+ yPt: z.ZodNumber;
2161
+ widthPt: z.ZodNumber;
2162
+ heightPt: z.ZodNumber;
2163
+ }, z.core.$strip>>>;
2164
+ }, z.core.$strip>, z.ZodObject<{
2165
+ kind: z.ZodLiteral<"line">;
2166
+ from: z.ZodObject<{
2167
+ xPt: z.ZodNumber;
2168
+ yPt: z.ZodNumber;
2169
+ }, z.core.$strip>;
2170
+ to: z.ZodObject<{
2171
+ xPt: z.ZodNumber;
2172
+ yPt: z.ZodNumber;
2173
+ }, z.core.$strip>;
2174
+ stroke: z.ZodObject<{
2175
+ color: z.ZodObject<{
2176
+ r: z.ZodNumber;
2177
+ g: z.ZodNumber;
2178
+ b: z.ZodNumber;
2179
+ }, z.core.$strip>;
2180
+ widthPt: z.ZodNumber;
2181
+ style: z.ZodOptional<z.ZodEnum<{
2182
+ solid: "solid";
2183
+ dashed: "dashed";
2184
+ dotted: "dotted";
2185
+ double: "double";
2186
+ }>>;
2187
+ }, z.core.$strip>;
2188
+ paintOrder: z.ZodOptional<z.ZodNumber>;
2189
+ sourcePath: z.ZodOptional<z.ZodString>;
2190
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
2191
+ pageIndex: z.ZodNumber;
2192
+ xPt: z.ZodNumber;
2193
+ yPt: z.ZodNumber;
2194
+ widthPt: z.ZodNumber;
2195
+ heightPt: z.ZodNumber;
2196
+ }, z.core.$strip>>>;
2197
+ }, z.core.$strip>, z.ZodObject<{
2198
+ kind: z.ZodLiteral<"path">;
2199
+ frame: z.ZodObject<{
2200
+ xPt: z.ZodNumber;
2201
+ yPt: z.ZodNumber;
2202
+ widthPt: z.ZodNumber;
2203
+ heightPt: z.ZodNumber;
2204
+ }, z.core.$strip>;
2205
+ rotationDeg: z.ZodOptional<z.ZodNumber>;
2206
+ subpaths: z.ZodArray<z.ZodObject<{
2207
+ start: z.ZodObject<{
2208
+ xPt: z.ZodNumber;
2209
+ yPt: z.ZodNumber;
2210
+ }, z.core.$strip>;
2211
+ segments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2212
+ kind: z.ZodLiteral<"line">;
2213
+ to: z.ZodObject<{
2214
+ xPt: z.ZodNumber;
2215
+ yPt: z.ZodNumber;
2216
+ }, z.core.$strip>;
2217
+ }, z.core.$strip>, z.ZodObject<{
2218
+ kind: z.ZodLiteral<"cubic">;
2219
+ control1: z.ZodObject<{
2220
+ xPt: z.ZodNumber;
2221
+ yPt: z.ZodNumber;
2222
+ }, z.core.$strip>;
2223
+ control2: z.ZodObject<{
2224
+ xPt: z.ZodNumber;
2225
+ yPt: z.ZodNumber;
2226
+ }, z.core.$strip>;
2227
+ to: z.ZodObject<{
2228
+ xPt: z.ZodNumber;
2229
+ yPt: z.ZodNumber;
2230
+ }, z.core.$strip>;
2231
+ }, z.core.$strip>], "kind">>;
2232
+ closed: z.ZodBoolean;
2233
+ }, z.core.$strip>>;
2234
+ fill: z.ZodOptional<z.ZodObject<{
2235
+ r: z.ZodNumber;
2236
+ g: z.ZodNumber;
2237
+ b: z.ZodNumber;
2238
+ }, z.core.$strip>>;
2239
+ fillRule: z.ZodOptional<z.ZodEnum<{
2240
+ nonzero: "nonzero";
2241
+ evenodd: "evenodd";
2242
+ }>>;
2243
+ stroke: z.ZodOptional<z.ZodObject<{
2244
+ color: z.ZodObject<{
2245
+ r: z.ZodNumber;
2246
+ g: z.ZodNumber;
2247
+ b: z.ZodNumber;
2248
+ }, z.core.$strip>;
2249
+ widthPt: z.ZodNumber;
2250
+ style: z.ZodOptional<z.ZodEnum<{
2251
+ solid: "solid";
2252
+ dashed: "dashed";
2253
+ dotted: "dotted";
2254
+ double: "double";
2255
+ }>>;
2256
+ }, z.core.$strip>>;
2257
+ paintOrder: z.ZodOptional<z.ZodNumber>;
2258
+ sourcePath: z.ZodOptional<z.ZodString>;
2259
+ frames: z.ZodOptional<z.ZodArray<z.ZodObject<{
2260
+ pageIndex: z.ZodNumber;
2261
+ xPt: z.ZodNumber;
2262
+ yPt: z.ZodNumber;
2263
+ widthPt: z.ZodNumber;
2264
+ heightPt: z.ZodNumber;
2265
+ }, z.core.$strip>>>;
2266
+ }, z.core.$strip>], "kind">>;
2267
+ }, z.core.$strip>>;
2268
+ symbolTable: z.ZodOptional<z.ZodObject<{
2269
+ symbols: z.ZodArray<z.ZodObject<{
2270
+ glyph: z.ZodString;
2271
+ scope: z.ZodString;
2272
+ id: z.ZodString;
2273
+ quantityKind: z.ZodOptional<z.ZodString>;
2274
+ preferredUnit: z.ZodOptional<z.ZodString>;
2275
+ definitionSource: z.ZodOptional<z.ZodString>;
2276
+ }, z.core.$strip>>;
2277
+ units: z.ZodArray<z.ZodObject<{
2278
+ id: z.ZodString;
2279
+ symbol: z.ZodString;
2280
+ name: z.ZodOptional<z.ZodString>;
2281
+ dimension: z.ZodRecord<z.ZodEnum<{
2282
+ time: "time";
2283
+ length: "length";
2284
+ mass: "mass";
2285
+ electricCurrent: "electricCurrent";
2286
+ thermodynamicTemperature: "thermodynamicTemperature";
2287
+ amountOfSubstance: "amountOfSubstance";
2288
+ luminousIntensity: "luminousIntensity";
2289
+ }> & z.core.$partial, z.ZodNumber>;
2290
+ factorToSi: z.ZodObject<{
2291
+ numerator: z.ZodString;
2292
+ denominator: z.ZodString;
2293
+ }, z.core.$strip>;
2294
+ offsetToSi: z.ZodOptional<z.ZodObject<{
2295
+ numerator: z.ZodString;
2296
+ denominator: z.ZodString;
2297
+ }, z.core.$strip>>;
2298
+ context: z.ZodOptional<z.ZodString>;
2299
+ }, z.core.$strip>>;
2300
+ contexts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2301
+ id: z.ZodString;
2302
+ bases: z.ZodArray<z.ZodObject<{
2303
+ unit: z.ZodString;
2304
+ value: z.ZodObject<{
2305
+ numerator: z.ZodString;
2306
+ denominator: z.ZodString;
2307
+ }, z.core.$strip>;
2308
+ }, z.core.$strip>>;
2309
+ }, z.core.$strip>>>;
2310
+ }, z.core.$strip>>;
2311
+ kind: z.ZodLiteral<"drawing">;
2312
+ metadata: z.ZodObject<{
2313
+ title: z.ZodOptional<z.ZodString>;
2314
+ author: z.ZodOptional<z.ZodString>;
2315
+ subject: z.ZodOptional<z.ZodString>;
2316
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
2317
+ creator: z.ZodOptional<z.ZodString>;
2318
+ producer: z.ZodOptional<z.ZodString>;
2319
+ createdIso: z.ZodOptional<z.ZodString>;
2320
+ modifiedIso: z.ZodOptional<z.ZodString>;
2321
+ }, z.core.$strip>;
2322
+ }, z.core.$strip>, z.ZodObject<{
2323
+ formula: z.ZodObject<{
2324
+ mathml: z.ZodArray<z.ZodCustom<MathMlNode, MathMlNode>>;
2325
+ starMath: z.ZodOptional<z.ZodString>;
2326
+ presentation: z.ZodOptional<z.ZodObject<{
2327
+ latex: z.ZodString;
2328
+ }, z.core.$strip>>;
2329
+ content: z.ZodOptional<z.ZodCustom<MathExpression, MathExpression>>;
2330
+ provenance: z.ZodOptional<z.ZodObject<{
2331
+ source: z.ZodString;
2332
+ pageRef: z.ZodOptional<z.ZodString>;
2333
+ editTrail: z.ZodArray<z.ZodString>;
2334
+ }, z.core.$strip>>;
2335
+ }, z.core.$strip>;
2336
+ symbolTable: z.ZodOptional<z.ZodObject<{
2337
+ symbols: z.ZodArray<z.ZodObject<{
2338
+ glyph: z.ZodString;
2339
+ scope: z.ZodString;
2340
+ id: z.ZodString;
2341
+ quantityKind: z.ZodOptional<z.ZodString>;
2342
+ preferredUnit: z.ZodOptional<z.ZodString>;
2343
+ definitionSource: z.ZodOptional<z.ZodString>;
2344
+ }, z.core.$strip>>;
2345
+ units: z.ZodArray<z.ZodObject<{
2346
+ id: z.ZodString;
2347
+ symbol: z.ZodString;
2348
+ name: z.ZodOptional<z.ZodString>;
2349
+ dimension: z.ZodRecord<z.ZodEnum<{
2350
+ time: "time";
2351
+ length: "length";
2352
+ mass: "mass";
2353
+ electricCurrent: "electricCurrent";
2354
+ thermodynamicTemperature: "thermodynamicTemperature";
2355
+ amountOfSubstance: "amountOfSubstance";
2356
+ luminousIntensity: "luminousIntensity";
2357
+ }> & z.core.$partial, z.ZodNumber>;
2358
+ factorToSi: z.ZodObject<{
2359
+ numerator: z.ZodString;
2360
+ denominator: z.ZodString;
2361
+ }, z.core.$strip>;
2362
+ offsetToSi: z.ZodOptional<z.ZodObject<{
2363
+ numerator: z.ZodString;
2364
+ denominator: z.ZodString;
2365
+ }, z.core.$strip>>;
2366
+ context: z.ZodOptional<z.ZodString>;
2367
+ }, z.core.$strip>>;
2368
+ contexts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2369
+ id: z.ZodString;
2370
+ bases: z.ZodArray<z.ZodObject<{
2371
+ unit: z.ZodString;
2372
+ value: z.ZodObject<{
2373
+ numerator: z.ZodString;
2374
+ denominator: z.ZodString;
2375
+ }, z.core.$strip>;
2376
+ }, z.core.$strip>>;
2377
+ }, z.core.$strip>>>;
2378
+ }, z.core.$strip>>;
2379
+ kind: z.ZodLiteral<"formula">;
2380
+ metadata: z.ZodObject<{
2381
+ title: z.ZodOptional<z.ZodString>;
2382
+ author: z.ZodOptional<z.ZodString>;
2383
+ subject: z.ZodOptional<z.ZodString>;
2384
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
2385
+ creator: z.ZodOptional<z.ZodString>;
2386
+ producer: z.ZodOptional<z.ZodString>;
2387
+ createdIso: z.ZodOptional<z.ZodString>;
2388
+ modifiedIso: z.ZodOptional<z.ZodString>;
2389
+ }, z.core.$strip>;
2390
+ }, z.core.$strip>], "kind">;
2391
+ type ContentDocument = z.infer<typeof ContentDocumentSchema>;
2392
+ //#endregion
2393
+ export { ContentSheetRow as $, ContentPathSegment as A, ContentSheetCellComment as B, ContentListMembershipSchema as C, isContentBlock as Ct, ContentParagraphSchema as D, ContentParagraph as E, ContentSectionSchema as F, ContentSheetImage as G, ContentSheetCellSchema as H, ContentShape as I, ContentSheetPrintRangeSchema as J, ContentSheetImageSchema as K, ContentShapeSchema as L, ContentRun as M, ContentRunSchema as N, ContentPathPoint as O, ContentSection as P, ContentSheetRepeatRangeSchema as Q, ContentSheet as R, ContentListMembership as S, contentDocumentSharedFields as St, ContentPageBreakSchema as T, ContentSheetColumn as U, ContentSheetCellCommentSchema as V, ContentSheetColumnSchema as W, ContentSheetPrintSettingsSchema as X, ContentSheetPrintSettings as Y, ContentSheetRepeatRange as Z, ContentEmbeddedObjectSchema as _, ContentVectorSchema as _t, ContentCellBorders as a, ContentStrokeSchema as at, ContentImageBlock as b, FusedNode as bt, ContentCellValueSchema as c, ContentSubpath as ct, ContentDrawPage as d, ContentTableCell as dt, ContentSheetRowSchema as et, ContentDrawPageSchema as f, ContentTableCellSchema as ft, ContentEmbeddedObjectKind as g, ContentVector as gt, ContentEmbeddedObjectBlockSchema as h, ContentTableSchema as ht, ContentBorderSchema as i, ContentStroke as it, ContentPathSegmentSchema as j, ContentPathPointSchema as k, ContentDocument as l, ContentSubpathSchema as lt, ContentEmbeddedObjectBlock as m, ContentTableRowSchema as mt, ContentBlockSchema as n, ContentSlide as nt, ContentCellBordersSchema as o, ContentStrokeStyle as ot, ContentEmbeddedObject as p, ContentTableRow as pt, ContentSheetPrintRange as q, ContentBorder as r, ContentSlideSchema as rt, ContentCellValue as s, ContentStrokeStyleSchema as st, ContentBlock as t, ContentSheetSchema as tt, ContentDocumentSchema as u, ContentTable as ut, ContentFormula as v, DecimalString as vt, ContentPageBreak as w, ContentImageBlockSchema as x, clampHeadingLevel as xt, ContentFormulaSchema as y, DecimalStringSchema as yt, ContentSheetCell as z };