@webstudio-is/css-engine 0.167.0 → 0.173.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.
@@ -2,31 +2,37 @@ import { z } from "zod";
2
2
  import type { Property as GeneratedProperty, Unit as GeneratedUnit } from "./__generated__/types";
3
3
  export type CustomProperty = `--${string}`;
4
4
  export type StyleProperty = GeneratedProperty | CustomProperty;
5
- declare const Unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
5
+ declare const Unit: z.ZodType<GeneratedUnit | "number">;
6
6
  export type Unit = z.infer<typeof Unit>;
7
7
  export declare const UnitValue: z.ZodObject<{
8
8
  type: z.ZodLiteral<"unit">;
9
9
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
10
10
  value: z.ZodNumber;
11
+ hidden: z.ZodOptional<z.ZodBoolean>;
11
12
  }, "strip", z.ZodTypeAny, {
12
13
  type: "unit";
13
14
  value: number;
14
15
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
16
+ hidden?: boolean | undefined;
15
17
  }, {
16
18
  type: "unit";
17
19
  value: number;
18
20
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
21
+ hidden?: boolean | undefined;
19
22
  }>;
20
23
  export type UnitValue = z.infer<typeof UnitValue>;
21
24
  export declare const KeywordValue: z.ZodObject<{
22
25
  type: z.ZodLiteral<"keyword">;
23
26
  value: z.ZodString;
27
+ hidden: z.ZodOptional<z.ZodBoolean>;
24
28
  }, "strip", z.ZodTypeAny, {
25
29
  type: "keyword";
26
30
  value: string;
31
+ hidden?: boolean | undefined;
27
32
  }, {
28
33
  type: "keyword";
29
34
  value: string;
35
+ hidden?: boolean | undefined;
30
36
  }>;
31
37
  export type KeywordValue = z.infer<typeof KeywordValue>;
32
38
  /**
@@ -49,12 +55,15 @@ export type UnparsedValue = z.infer<typeof UnparsedValue>;
49
55
  declare const FontFamilyValue: z.ZodObject<{
50
56
  type: z.ZodLiteral<"fontFamily">;
51
57
  value: z.ZodArray<z.ZodString, "many">;
58
+ hidden: z.ZodOptional<z.ZodBoolean>;
52
59
  }, "strip", z.ZodTypeAny, {
53
60
  type: "fontFamily";
54
61
  value: string[];
62
+ hidden?: boolean | undefined;
55
63
  }, {
56
64
  type: "fontFamily";
57
65
  value: string[];
66
+ hidden?: boolean | undefined;
58
67
  }>;
59
68
  export type FontFamilyValue = z.infer<typeof FontFamilyValue>;
60
69
  declare const RgbValue: z.ZodObject<{
@@ -63,18 +72,21 @@ declare const RgbValue: z.ZodObject<{
63
72
  g: z.ZodNumber;
64
73
  b: z.ZodNumber;
65
74
  alpha: z.ZodNumber;
75
+ hidden: z.ZodOptional<z.ZodBoolean>;
66
76
  }, "strip", z.ZodTypeAny, {
67
77
  type: "rgb";
68
78
  r: number;
69
79
  g: number;
70
80
  b: number;
71
81
  alpha: number;
82
+ hidden?: boolean | undefined;
72
83
  }, {
73
84
  type: "rgb";
74
85
  r: number;
75
86
  g: number;
76
87
  b: number;
77
88
  alpha: number;
89
+ hidden?: boolean | undefined;
78
90
  }>;
79
91
  export type RgbValue = z.infer<typeof RgbValue>;
80
92
  export type FunctionValue = z.infer<typeof FunctionValue>;
@@ -82,6 +94,7 @@ export declare const FunctionValue: z.ZodType<{
82
94
  type: "function";
83
95
  name: string;
84
96
  args: StyleValue;
97
+ hidden?: boolean;
85
98
  }>;
86
99
  export declare const ImageValue: z.ZodObject<{
87
100
  type: z.ZodLiteral<"image">;
@@ -129,55 +142,70 @@ export declare const ImageValue: z.ZodObject<{
129
142
  export type ImageValue = z.infer<typeof ImageValue>;
130
143
  export declare const GuaranteedInvalidValue: z.ZodObject<{
131
144
  type: z.ZodLiteral<"guaranteedInvalid">;
145
+ hidden: z.ZodOptional<z.ZodBoolean>;
132
146
  }, "strip", z.ZodTypeAny, {
133
147
  type: "guaranteedInvalid";
148
+ hidden?: boolean | undefined;
134
149
  }, {
135
150
  type: "guaranteedInvalid";
151
+ hidden?: boolean | undefined;
136
152
  }>;
137
153
  export type GuaranteedInvalidValue = z.infer<typeof GuaranteedInvalidValue>;
138
154
  export declare const InvalidValue: z.ZodObject<{
139
155
  type: z.ZodLiteral<"invalid">;
140
156
  value: z.ZodString;
157
+ hidden: z.ZodOptional<z.ZodBoolean>;
141
158
  }, "strip", z.ZodTypeAny, {
142
159
  type: "invalid";
143
160
  value: string;
161
+ hidden?: boolean | undefined;
144
162
  }, {
145
163
  type: "invalid";
146
164
  value: string;
165
+ hidden?: boolean | undefined;
147
166
  }>;
148
167
  export type InvalidValue = z.infer<typeof InvalidValue>;
149
168
  declare const UnsetValue: z.ZodObject<{
150
169
  type: z.ZodLiteral<"unset">;
151
170
  value: z.ZodLiteral<"">;
171
+ hidden: z.ZodOptional<z.ZodBoolean>;
152
172
  }, "strip", z.ZodTypeAny, {
153
173
  type: "unset";
154
174
  value: "";
175
+ hidden?: boolean | undefined;
155
176
  }, {
156
177
  type: "unset";
157
178
  value: "";
179
+ hidden?: boolean | undefined;
158
180
  }>;
159
181
  export type UnsetValue = z.infer<typeof UnsetValue>;
160
182
  export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
161
183
  type: z.ZodLiteral<"unit">;
162
184
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
163
185
  value: z.ZodNumber;
186
+ hidden: z.ZodOptional<z.ZodBoolean>;
164
187
  }, "strip", z.ZodTypeAny, {
165
188
  type: "unit";
166
189
  value: number;
167
190
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
191
+ hidden?: boolean | undefined;
168
192
  }, {
169
193
  type: "unit";
170
194
  value: number;
171
195
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
196
+ hidden?: boolean | undefined;
172
197
  }>, z.ZodObject<{
173
198
  type: z.ZodLiteral<"keyword">;
174
199
  value: z.ZodString;
200
+ hidden: z.ZodOptional<z.ZodBoolean>;
175
201
  }, "strip", z.ZodTypeAny, {
176
202
  type: "keyword";
177
203
  value: string;
204
+ hidden?: boolean | undefined;
178
205
  }, {
179
206
  type: "keyword";
180
207
  value: string;
208
+ hidden?: boolean | undefined;
181
209
  }>, z.ZodObject<{
182
210
  type: z.ZodLiteral<"unparsed">;
183
211
  value: z.ZodString;
@@ -190,32 +218,79 @@ export declare const TupleValueItem: z.ZodUnion<[z.ZodObject<{
190
218
  type: "unparsed";
191
219
  value: string;
192
220
  hidden?: boolean | undefined;
221
+ }>, z.ZodObject<{
222
+ type: z.ZodLiteral<"image">;
223
+ value: z.ZodUnion<[z.ZodObject<{
224
+ type: z.ZodLiteral<"asset">;
225
+ value: z.ZodString;
226
+ }, "strip", z.ZodTypeAny, {
227
+ type: "asset";
228
+ value: string;
229
+ }, {
230
+ type: "asset";
231
+ value: string;
232
+ }>, z.ZodObject<{
233
+ type: z.ZodLiteral<"url">;
234
+ url: z.ZodString;
235
+ }, "strip", z.ZodTypeAny, {
236
+ type: "url";
237
+ url: string;
238
+ }, {
239
+ type: "url";
240
+ url: string;
241
+ }>]>;
242
+ hidden: z.ZodOptional<z.ZodBoolean>;
243
+ }, "strip", z.ZodTypeAny, {
244
+ type: "image";
245
+ value: {
246
+ type: "asset";
247
+ value: string;
248
+ } | {
249
+ type: "url";
250
+ url: string;
251
+ };
252
+ hidden?: boolean | undefined;
253
+ }, {
254
+ type: "image";
255
+ value: {
256
+ type: "asset";
257
+ value: string;
258
+ } | {
259
+ type: "url";
260
+ url: string;
261
+ };
262
+ hidden?: boolean | undefined;
193
263
  }>, z.ZodObject<{
194
264
  type: z.ZodLiteral<"rgb">;
195
265
  r: z.ZodNumber;
196
266
  g: z.ZodNumber;
197
267
  b: z.ZodNumber;
198
268
  alpha: z.ZodNumber;
269
+ hidden: z.ZodOptional<z.ZodBoolean>;
199
270
  }, "strip", z.ZodTypeAny, {
200
271
  type: "rgb";
201
272
  r: number;
202
273
  g: number;
203
274
  b: number;
204
275
  alpha: number;
276
+ hidden?: boolean | undefined;
205
277
  }, {
206
278
  type: "rgb";
207
279
  r: number;
208
280
  g: number;
209
281
  b: number;
210
282
  alpha: number;
283
+ hidden?: boolean | undefined;
211
284
  }>, z.ZodType<{
212
285
  type: "function";
213
286
  name: string;
214
287
  args: StyleValue;
288
+ hidden?: boolean;
215
289
  }, z.ZodTypeDef, {
216
290
  type: "function";
217
291
  name: string;
218
292
  args: StyleValue;
293
+ hidden?: boolean;
219
294
  }>]>;
220
295
  export type TupleValueItem = z.infer<typeof TupleValueItem>;
221
296
  export declare const TupleValue: z.ZodObject<{
@@ -224,23 +299,29 @@ export declare const TupleValue: z.ZodObject<{
224
299
  type: z.ZodLiteral<"unit">;
225
300
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
226
301
  value: z.ZodNumber;
302
+ hidden: z.ZodOptional<z.ZodBoolean>;
227
303
  }, "strip", z.ZodTypeAny, {
228
304
  type: "unit";
229
305
  value: number;
230
306
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
307
+ hidden?: boolean | undefined;
231
308
  }, {
232
309
  type: "unit";
233
310
  value: number;
234
311
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
312
+ hidden?: boolean | undefined;
235
313
  }>, z.ZodObject<{
236
314
  type: z.ZodLiteral<"keyword">;
237
315
  value: z.ZodString;
316
+ hidden: z.ZodOptional<z.ZodBoolean>;
238
317
  }, "strip", z.ZodTypeAny, {
239
318
  type: "keyword";
240
319
  value: string;
320
+ hidden?: boolean | undefined;
241
321
  }, {
242
322
  type: "keyword";
243
323
  value: string;
324
+ hidden?: boolean | undefined;
244
325
  }>, z.ZodObject<{
245
326
  type: z.ZodLiteral<"unparsed">;
246
327
  value: z.ZodString;
@@ -253,32 +334,79 @@ export declare const TupleValue: z.ZodObject<{
253
334
  type: "unparsed";
254
335
  value: string;
255
336
  hidden?: boolean | undefined;
337
+ }>, z.ZodObject<{
338
+ type: z.ZodLiteral<"image">;
339
+ value: z.ZodUnion<[z.ZodObject<{
340
+ type: z.ZodLiteral<"asset">;
341
+ value: z.ZodString;
342
+ }, "strip", z.ZodTypeAny, {
343
+ type: "asset";
344
+ value: string;
345
+ }, {
346
+ type: "asset";
347
+ value: string;
348
+ }>, z.ZodObject<{
349
+ type: z.ZodLiteral<"url">;
350
+ url: z.ZodString;
351
+ }, "strip", z.ZodTypeAny, {
352
+ type: "url";
353
+ url: string;
354
+ }, {
355
+ type: "url";
356
+ url: string;
357
+ }>]>;
358
+ hidden: z.ZodOptional<z.ZodBoolean>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ type: "image";
361
+ value: {
362
+ type: "asset";
363
+ value: string;
364
+ } | {
365
+ type: "url";
366
+ url: string;
367
+ };
368
+ hidden?: boolean | undefined;
369
+ }, {
370
+ type: "image";
371
+ value: {
372
+ type: "asset";
373
+ value: string;
374
+ } | {
375
+ type: "url";
376
+ url: string;
377
+ };
378
+ hidden?: boolean | undefined;
256
379
  }>, z.ZodObject<{
257
380
  type: z.ZodLiteral<"rgb">;
258
381
  r: z.ZodNumber;
259
382
  g: z.ZodNumber;
260
383
  b: z.ZodNumber;
261
384
  alpha: z.ZodNumber;
385
+ hidden: z.ZodOptional<z.ZodBoolean>;
262
386
  }, "strip", z.ZodTypeAny, {
263
387
  type: "rgb";
264
388
  r: number;
265
389
  g: number;
266
390
  b: number;
267
391
  alpha: number;
392
+ hidden?: boolean | undefined;
268
393
  }, {
269
394
  type: "rgb";
270
395
  r: number;
271
396
  g: number;
272
397
  b: number;
273
398
  alpha: number;
399
+ hidden?: boolean | undefined;
274
400
  }>, z.ZodType<{
275
401
  type: "function";
276
402
  name: string;
277
403
  args: StyleValue;
404
+ hidden?: boolean;
278
405
  }, z.ZodTypeDef, {
279
406
  type: "function";
280
407
  name: string;
281
408
  args: StyleValue;
409
+ hidden?: boolean;
282
410
  }>]>, "many">;
283
411
  hidden: z.ZodOptional<z.ZodBoolean>;
284
412
  }, "strip", z.ZodTypeAny, {
@@ -287,9 +415,11 @@ export declare const TupleValue: z.ZodObject<{
287
415
  type: "unit";
288
416
  value: number;
289
417
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
418
+ hidden?: boolean | undefined;
290
419
  } | {
291
420
  type: "keyword";
292
421
  value: string;
422
+ hidden?: boolean | undefined;
293
423
  } | {
294
424
  type: "unparsed";
295
425
  value: string;
@@ -300,10 +430,22 @@ export declare const TupleValue: z.ZodObject<{
300
430
  g: number;
301
431
  b: number;
302
432
  alpha: number;
433
+ hidden?: boolean | undefined;
303
434
  } | {
304
435
  type: "function";
305
436
  name: string;
306
437
  args: StyleValue;
438
+ hidden?: boolean;
439
+ } | {
440
+ type: "image";
441
+ value: {
442
+ type: "asset";
443
+ value: string;
444
+ } | {
445
+ type: "url";
446
+ url: string;
447
+ };
448
+ hidden?: boolean | undefined;
307
449
  })[];
308
450
  hidden?: boolean | undefined;
309
451
  }, {
@@ -312,9 +454,11 @@ export declare const TupleValue: z.ZodObject<{
312
454
  type: "unit";
313
455
  value: number;
314
456
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
457
+ hidden?: boolean | undefined;
315
458
  } | {
316
459
  type: "keyword";
317
460
  value: string;
461
+ hidden?: boolean | undefined;
318
462
  } | {
319
463
  type: "unparsed";
320
464
  value: string;
@@ -325,10 +469,22 @@ export declare const TupleValue: z.ZodObject<{
325
469
  g: number;
326
470
  b: number;
327
471
  alpha: number;
472
+ hidden?: boolean | undefined;
328
473
  } | {
329
474
  type: "function";
330
475
  name: string;
331
476
  args: StyleValue;
477
+ hidden?: boolean;
478
+ } | {
479
+ type: "image";
480
+ value: {
481
+ type: "asset";
482
+ value: string;
483
+ } | {
484
+ type: "url";
485
+ url: string;
486
+ };
487
+ hidden?: boolean | undefined;
332
488
  })[];
333
489
  hidden?: boolean | undefined;
334
490
  }>;
@@ -337,23 +493,29 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
337
493
  type: z.ZodLiteral<"unit">;
338
494
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
339
495
  value: z.ZodNumber;
496
+ hidden: z.ZodOptional<z.ZodBoolean>;
340
497
  }, "strip", z.ZodTypeAny, {
341
498
  type: "unit";
342
499
  value: number;
343
500
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
501
+ hidden?: boolean | undefined;
344
502
  }, {
345
503
  type: "unit";
346
504
  value: number;
347
505
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
506
+ hidden?: boolean | undefined;
348
507
  }>, z.ZodObject<{
349
508
  type: z.ZodLiteral<"keyword">;
350
509
  value: z.ZodString;
510
+ hidden: z.ZodOptional<z.ZodBoolean>;
351
511
  }, "strip", z.ZodTypeAny, {
352
512
  type: "keyword";
353
513
  value: string;
514
+ hidden?: boolean | undefined;
354
515
  }, {
355
516
  type: "keyword";
356
517
  value: string;
518
+ hidden?: boolean | undefined;
357
519
  }>, z.ZodObject<{
358
520
  type: z.ZodLiteral<"unparsed">;
359
521
  value: z.ZodString;
@@ -414,23 +576,29 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
414
576
  type: z.ZodLiteral<"unit">;
415
577
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
416
578
  value: z.ZodNumber;
579
+ hidden: z.ZodOptional<z.ZodBoolean>;
417
580
  }, "strip", z.ZodTypeAny, {
418
581
  type: "unit";
419
582
  value: number;
420
583
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
584
+ hidden?: boolean | undefined;
421
585
  }, {
422
586
  type: "unit";
423
587
  value: number;
424
588
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
589
+ hidden?: boolean | undefined;
425
590
  }>, z.ZodObject<{
426
591
  type: z.ZodLiteral<"keyword">;
427
592
  value: z.ZodString;
593
+ hidden: z.ZodOptional<z.ZodBoolean>;
428
594
  }, "strip", z.ZodTypeAny, {
429
595
  type: "keyword";
430
596
  value: string;
597
+ hidden?: boolean | undefined;
431
598
  }, {
432
599
  type: "keyword";
433
600
  value: string;
601
+ hidden?: boolean | undefined;
434
602
  }>, z.ZodObject<{
435
603
  type: z.ZodLiteral<"unparsed">;
436
604
  value: z.ZodString;
@@ -443,32 +611,79 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
443
611
  type: "unparsed";
444
612
  value: string;
445
613
  hidden?: boolean | undefined;
614
+ }>, z.ZodObject<{
615
+ type: z.ZodLiteral<"image">;
616
+ value: z.ZodUnion<[z.ZodObject<{
617
+ type: z.ZodLiteral<"asset">;
618
+ value: z.ZodString;
619
+ }, "strip", z.ZodTypeAny, {
620
+ type: "asset";
621
+ value: string;
622
+ }, {
623
+ type: "asset";
624
+ value: string;
625
+ }>, z.ZodObject<{
626
+ type: z.ZodLiteral<"url">;
627
+ url: z.ZodString;
628
+ }, "strip", z.ZodTypeAny, {
629
+ type: "url";
630
+ url: string;
631
+ }, {
632
+ type: "url";
633
+ url: string;
634
+ }>]>;
635
+ hidden: z.ZodOptional<z.ZodBoolean>;
636
+ }, "strip", z.ZodTypeAny, {
637
+ type: "image";
638
+ value: {
639
+ type: "asset";
640
+ value: string;
641
+ } | {
642
+ type: "url";
643
+ url: string;
644
+ };
645
+ hidden?: boolean | undefined;
646
+ }, {
647
+ type: "image";
648
+ value: {
649
+ type: "asset";
650
+ value: string;
651
+ } | {
652
+ type: "url";
653
+ url: string;
654
+ };
655
+ hidden?: boolean | undefined;
446
656
  }>, z.ZodObject<{
447
657
  type: z.ZodLiteral<"rgb">;
448
658
  r: z.ZodNumber;
449
659
  g: z.ZodNumber;
450
660
  b: z.ZodNumber;
451
661
  alpha: z.ZodNumber;
662
+ hidden: z.ZodOptional<z.ZodBoolean>;
452
663
  }, "strip", z.ZodTypeAny, {
453
664
  type: "rgb";
454
665
  r: number;
455
666
  g: number;
456
667
  b: number;
457
668
  alpha: number;
669
+ hidden?: boolean | undefined;
458
670
  }, {
459
671
  type: "rgb";
460
672
  r: number;
461
673
  g: number;
462
674
  b: number;
463
675
  alpha: number;
676
+ hidden?: boolean | undefined;
464
677
  }>, z.ZodType<{
465
678
  type: "function";
466
679
  name: string;
467
680
  args: StyleValue;
681
+ hidden?: boolean;
468
682
  }, z.ZodTypeDef, {
469
683
  type: "function";
470
684
  name: string;
471
685
  args: StyleValue;
686
+ hidden?: boolean;
472
687
  }>]>, "many">;
473
688
  hidden: z.ZodOptional<z.ZodBoolean>;
474
689
  }, "strip", z.ZodTypeAny, {
@@ -477,9 +692,11 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
477
692
  type: "unit";
478
693
  value: number;
479
694
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
695
+ hidden?: boolean | undefined;
480
696
  } | {
481
697
  type: "keyword";
482
698
  value: string;
699
+ hidden?: boolean | undefined;
483
700
  } | {
484
701
  type: "unparsed";
485
702
  value: string;
@@ -490,10 +707,22 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
490
707
  g: number;
491
708
  b: number;
492
709
  alpha: number;
710
+ hidden?: boolean | undefined;
493
711
  } | {
494
712
  type: "function";
495
713
  name: string;
496
714
  args: StyleValue;
715
+ hidden?: boolean;
716
+ } | {
717
+ type: "image";
718
+ value: {
719
+ type: "asset";
720
+ value: string;
721
+ } | {
722
+ type: "url";
723
+ url: string;
724
+ };
725
+ hidden?: boolean | undefined;
497
726
  })[];
498
727
  hidden?: boolean | undefined;
499
728
  }, {
@@ -502,9 +731,11 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
502
731
  type: "unit";
503
732
  value: number;
504
733
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
734
+ hidden?: boolean | undefined;
505
735
  } | {
506
736
  type: "keyword";
507
737
  value: string;
738
+ hidden?: boolean | undefined;
508
739
  } | {
509
740
  type: "unparsed";
510
741
  value: string;
@@ -515,29 +746,67 @@ declare const LayerValueItem: z.ZodUnion<[z.ZodObject<{
515
746
  g: number;
516
747
  b: number;
517
748
  alpha: number;
749
+ hidden?: boolean | undefined;
518
750
  } | {
519
751
  type: "function";
520
752
  name: string;
521
753
  args: StyleValue;
754
+ hidden?: boolean;
755
+ } | {
756
+ type: "image";
757
+ value: {
758
+ type: "asset";
759
+ value: string;
760
+ } | {
761
+ type: "url";
762
+ url: string;
763
+ };
764
+ hidden?: boolean | undefined;
522
765
  })[];
523
766
  hidden?: boolean | undefined;
767
+ }>, z.ZodObject<{
768
+ type: z.ZodLiteral<"rgb">;
769
+ r: z.ZodNumber;
770
+ g: z.ZodNumber;
771
+ b: z.ZodNumber;
772
+ alpha: z.ZodNumber;
773
+ hidden: z.ZodOptional<z.ZodBoolean>;
774
+ }, "strip", z.ZodTypeAny, {
775
+ type: "rgb";
776
+ r: number;
777
+ g: number;
778
+ b: number;
779
+ alpha: number;
780
+ hidden?: boolean | undefined;
781
+ }, {
782
+ type: "rgb";
783
+ r: number;
784
+ g: number;
785
+ b: number;
786
+ alpha: number;
787
+ hidden?: boolean | undefined;
524
788
  }>, z.ZodObject<{
525
789
  type: z.ZodLiteral<"invalid">;
526
790
  value: z.ZodString;
791
+ hidden: z.ZodOptional<z.ZodBoolean>;
527
792
  }, "strip", z.ZodTypeAny, {
528
793
  type: "invalid";
529
794
  value: string;
795
+ hidden?: boolean | undefined;
530
796
  }, {
531
797
  type: "invalid";
532
798
  value: string;
799
+ hidden?: boolean | undefined;
533
800
  }>, z.ZodType<{
534
801
  type: "function";
535
802
  name: string;
536
803
  args: StyleValue;
804
+ hidden?: boolean;
537
805
  }, z.ZodTypeDef, {
538
806
  type: "function";
539
807
  name: string;
540
808
  args: StyleValue;
809
+ hidden?: boolean;
541
810
  }>]>;
542
811
  export type LayerValueItem = z.infer<typeof LayerValueItem>;
543
812
  export declare const LayersValue: z.ZodObject<{
@@ -546,23 +815,29 @@ export declare const LayersValue: z.ZodObject<{
546
815
  type: z.ZodLiteral<"unit">;
547
816
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
548
817
  value: z.ZodNumber;
818
+ hidden: z.ZodOptional<z.ZodBoolean>;
549
819
  }, "strip", z.ZodTypeAny, {
550
820
  type: "unit";
551
821
  value: number;
552
822
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
823
+ hidden?: boolean | undefined;
553
824
  }, {
554
825
  type: "unit";
555
826
  value: number;
556
827
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
828
+ hidden?: boolean | undefined;
557
829
  }>, z.ZodObject<{
558
830
  type: z.ZodLiteral<"keyword">;
559
831
  value: z.ZodString;
832
+ hidden: z.ZodOptional<z.ZodBoolean>;
560
833
  }, "strip", z.ZodTypeAny, {
561
834
  type: "keyword";
562
835
  value: string;
836
+ hidden?: boolean | undefined;
563
837
  }, {
564
838
  type: "keyword";
565
839
  value: string;
840
+ hidden?: boolean | undefined;
566
841
  }>, z.ZodObject<{
567
842
  type: z.ZodLiteral<"unparsed">;
568
843
  value: z.ZodString;
@@ -623,23 +898,29 @@ export declare const LayersValue: z.ZodObject<{
623
898
  type: z.ZodLiteral<"unit">;
624
899
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
625
900
  value: z.ZodNumber;
901
+ hidden: z.ZodOptional<z.ZodBoolean>;
626
902
  }, "strip", z.ZodTypeAny, {
627
903
  type: "unit";
628
904
  value: number;
629
905
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
906
+ hidden?: boolean | undefined;
630
907
  }, {
631
908
  type: "unit";
632
909
  value: number;
633
910
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
911
+ hidden?: boolean | undefined;
634
912
  }>, z.ZodObject<{
635
913
  type: z.ZodLiteral<"keyword">;
636
914
  value: z.ZodString;
915
+ hidden: z.ZodOptional<z.ZodBoolean>;
637
916
  }, "strip", z.ZodTypeAny, {
638
917
  type: "keyword";
639
918
  value: string;
919
+ hidden?: boolean | undefined;
640
920
  }, {
641
921
  type: "keyword";
642
922
  value: string;
923
+ hidden?: boolean | undefined;
643
924
  }>, z.ZodObject<{
644
925
  type: z.ZodLiteral<"unparsed">;
645
926
  value: z.ZodString;
@@ -652,32 +933,79 @@ export declare const LayersValue: z.ZodObject<{
652
933
  type: "unparsed";
653
934
  value: string;
654
935
  hidden?: boolean | undefined;
936
+ }>, z.ZodObject<{
937
+ type: z.ZodLiteral<"image">;
938
+ value: z.ZodUnion<[z.ZodObject<{
939
+ type: z.ZodLiteral<"asset">;
940
+ value: z.ZodString;
941
+ }, "strip", z.ZodTypeAny, {
942
+ type: "asset";
943
+ value: string;
944
+ }, {
945
+ type: "asset";
946
+ value: string;
947
+ }>, z.ZodObject<{
948
+ type: z.ZodLiteral<"url">;
949
+ url: z.ZodString;
950
+ }, "strip", z.ZodTypeAny, {
951
+ type: "url";
952
+ url: string;
953
+ }, {
954
+ type: "url";
955
+ url: string;
956
+ }>]>;
957
+ hidden: z.ZodOptional<z.ZodBoolean>;
958
+ }, "strip", z.ZodTypeAny, {
959
+ type: "image";
960
+ value: {
961
+ type: "asset";
962
+ value: string;
963
+ } | {
964
+ type: "url";
965
+ url: string;
966
+ };
967
+ hidden?: boolean | undefined;
968
+ }, {
969
+ type: "image";
970
+ value: {
971
+ type: "asset";
972
+ value: string;
973
+ } | {
974
+ type: "url";
975
+ url: string;
976
+ };
977
+ hidden?: boolean | undefined;
655
978
  }>, z.ZodObject<{
656
979
  type: z.ZodLiteral<"rgb">;
657
980
  r: z.ZodNumber;
658
981
  g: z.ZodNumber;
659
982
  b: z.ZodNumber;
660
983
  alpha: z.ZodNumber;
984
+ hidden: z.ZodOptional<z.ZodBoolean>;
661
985
  }, "strip", z.ZodTypeAny, {
662
986
  type: "rgb";
663
987
  r: number;
664
988
  g: number;
665
989
  b: number;
666
990
  alpha: number;
991
+ hidden?: boolean | undefined;
667
992
  }, {
668
993
  type: "rgb";
669
994
  r: number;
670
995
  g: number;
671
996
  b: number;
672
997
  alpha: number;
998
+ hidden?: boolean | undefined;
673
999
  }>, z.ZodType<{
674
1000
  type: "function";
675
1001
  name: string;
676
1002
  args: StyleValue;
1003
+ hidden?: boolean;
677
1004
  }, z.ZodTypeDef, {
678
1005
  type: "function";
679
1006
  name: string;
680
1007
  args: StyleValue;
1008
+ hidden?: boolean;
681
1009
  }>]>, "many">;
682
1010
  hidden: z.ZodOptional<z.ZodBoolean>;
683
1011
  }, "strip", z.ZodTypeAny, {
@@ -686,9 +1014,11 @@ export declare const LayersValue: z.ZodObject<{
686
1014
  type: "unit";
687
1015
  value: number;
688
1016
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1017
+ hidden?: boolean | undefined;
689
1018
  } | {
690
1019
  type: "keyword";
691
1020
  value: string;
1021
+ hidden?: boolean | undefined;
692
1022
  } | {
693
1023
  type: "unparsed";
694
1024
  value: string;
@@ -699,10 +1029,22 @@ export declare const LayersValue: z.ZodObject<{
699
1029
  g: number;
700
1030
  b: number;
701
1031
  alpha: number;
1032
+ hidden?: boolean | undefined;
702
1033
  } | {
703
1034
  type: "function";
704
1035
  name: string;
705
1036
  args: StyleValue;
1037
+ hidden?: boolean;
1038
+ } | {
1039
+ type: "image";
1040
+ value: {
1041
+ type: "asset";
1042
+ value: string;
1043
+ } | {
1044
+ type: "url";
1045
+ url: string;
1046
+ };
1047
+ hidden?: boolean | undefined;
706
1048
  })[];
707
1049
  hidden?: boolean | undefined;
708
1050
  }, {
@@ -711,9 +1053,11 @@ export declare const LayersValue: z.ZodObject<{
711
1053
  type: "unit";
712
1054
  value: number;
713
1055
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1056
+ hidden?: boolean | undefined;
714
1057
  } | {
715
1058
  type: "keyword";
716
1059
  value: string;
1060
+ hidden?: boolean | undefined;
717
1061
  } | {
718
1062
  type: "unparsed";
719
1063
  value: string;
@@ -724,47 +1068,96 @@ export declare const LayersValue: z.ZodObject<{
724
1068
  g: number;
725
1069
  b: number;
726
1070
  alpha: number;
1071
+ hidden?: boolean | undefined;
727
1072
  } | {
728
1073
  type: "function";
729
1074
  name: string;
730
1075
  args: StyleValue;
1076
+ hidden?: boolean;
1077
+ } | {
1078
+ type: "image";
1079
+ value: {
1080
+ type: "asset";
1081
+ value: string;
1082
+ } | {
1083
+ type: "url";
1084
+ url: string;
1085
+ };
1086
+ hidden?: boolean | undefined;
731
1087
  })[];
732
1088
  hidden?: boolean | undefined;
1089
+ }>, z.ZodObject<{
1090
+ type: z.ZodLiteral<"rgb">;
1091
+ r: z.ZodNumber;
1092
+ g: z.ZodNumber;
1093
+ b: z.ZodNumber;
1094
+ alpha: z.ZodNumber;
1095
+ hidden: z.ZodOptional<z.ZodBoolean>;
1096
+ }, "strip", z.ZodTypeAny, {
1097
+ type: "rgb";
1098
+ r: number;
1099
+ g: number;
1100
+ b: number;
1101
+ alpha: number;
1102
+ hidden?: boolean | undefined;
1103
+ }, {
1104
+ type: "rgb";
1105
+ r: number;
1106
+ g: number;
1107
+ b: number;
1108
+ alpha: number;
1109
+ hidden?: boolean | undefined;
733
1110
  }>, z.ZodObject<{
734
1111
  type: z.ZodLiteral<"invalid">;
735
1112
  value: z.ZodString;
1113
+ hidden: z.ZodOptional<z.ZodBoolean>;
736
1114
  }, "strip", z.ZodTypeAny, {
737
1115
  type: "invalid";
738
1116
  value: string;
1117
+ hidden?: boolean | undefined;
739
1118
  }, {
740
1119
  type: "invalid";
741
1120
  value: string;
1121
+ hidden?: boolean | undefined;
742
1122
  }>, z.ZodType<{
743
1123
  type: "function";
744
1124
  name: string;
745
1125
  args: StyleValue;
1126
+ hidden?: boolean;
746
1127
  }, z.ZodTypeDef, {
747
1128
  type: "function";
748
1129
  name: string;
749
1130
  args: StyleValue;
1131
+ hidden?: boolean;
750
1132
  }>]>, "many">;
1133
+ hidden: z.ZodOptional<z.ZodBoolean>;
751
1134
  }, "strip", z.ZodTypeAny, {
752
1135
  type: "layers";
753
1136
  value: ({
754
1137
  type: "unit";
755
1138
  value: number;
756
1139
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1140
+ hidden?: boolean | undefined;
757
1141
  } | {
758
1142
  type: "keyword";
759
1143
  value: string;
1144
+ hidden?: boolean | undefined;
760
1145
  } | {
761
1146
  type: "unparsed";
762
1147
  value: string;
763
1148
  hidden?: boolean | undefined;
1149
+ } | {
1150
+ type: "rgb";
1151
+ r: number;
1152
+ g: number;
1153
+ b: number;
1154
+ alpha: number;
1155
+ hidden?: boolean | undefined;
764
1156
  } | {
765
1157
  type: "function";
766
1158
  name: string;
767
1159
  args: StyleValue;
1160
+ hidden?: boolean;
768
1161
  } | {
769
1162
  type: "image";
770
1163
  value: {
@@ -781,9 +1174,11 @@ export declare const LayersValue: z.ZodObject<{
781
1174
  type: "unit";
782
1175
  value: number;
783
1176
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1177
+ hidden?: boolean | undefined;
784
1178
  } | {
785
1179
  type: "keyword";
786
1180
  value: string;
1181
+ hidden?: boolean | undefined;
787
1182
  } | {
788
1183
  type: "unparsed";
789
1184
  value: string;
@@ -794,33 +1189,57 @@ export declare const LayersValue: z.ZodObject<{
794
1189
  g: number;
795
1190
  b: number;
796
1191
  alpha: number;
1192
+ hidden?: boolean | undefined;
797
1193
  } | {
798
1194
  type: "function";
799
1195
  name: string;
800
1196
  args: StyleValue;
1197
+ hidden?: boolean;
1198
+ } | {
1199
+ type: "image";
1200
+ value: {
1201
+ type: "asset";
1202
+ value: string;
1203
+ } | {
1204
+ type: "url";
1205
+ url: string;
1206
+ };
1207
+ hidden?: boolean | undefined;
801
1208
  })[];
802
1209
  hidden?: boolean | undefined;
803
1210
  } | {
804
1211
  type: "invalid";
805
1212
  value: string;
1213
+ hidden?: boolean | undefined;
806
1214
  })[];
1215
+ hidden?: boolean | undefined;
807
1216
  }, {
808
1217
  type: "layers";
809
1218
  value: ({
810
1219
  type: "unit";
811
1220
  value: number;
812
1221
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1222
+ hidden?: boolean | undefined;
813
1223
  } | {
814
1224
  type: "keyword";
815
1225
  value: string;
1226
+ hidden?: boolean | undefined;
816
1227
  } | {
817
1228
  type: "unparsed";
818
1229
  value: string;
819
1230
  hidden?: boolean | undefined;
1231
+ } | {
1232
+ type: "rgb";
1233
+ r: number;
1234
+ g: number;
1235
+ b: number;
1236
+ alpha: number;
1237
+ hidden?: boolean | undefined;
820
1238
  } | {
821
1239
  type: "function";
822
1240
  name: string;
823
1241
  args: StyleValue;
1242
+ hidden?: boolean;
824
1243
  } | {
825
1244
  type: "image";
826
1245
  value: {
@@ -837,9 +1256,11 @@ export declare const LayersValue: z.ZodObject<{
837
1256
  type: "unit";
838
1257
  value: number;
839
1258
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1259
+ hidden?: boolean | undefined;
840
1260
  } | {
841
1261
  type: "keyword";
842
1262
  value: string;
1263
+ hidden?: boolean | undefined;
843
1264
  } | {
844
1265
  type: "unparsed";
845
1266
  value: string;
@@ -850,16 +1271,30 @@ export declare const LayersValue: z.ZodObject<{
850
1271
  g: number;
851
1272
  b: number;
852
1273
  alpha: number;
1274
+ hidden?: boolean | undefined;
853
1275
  } | {
854
1276
  type: "function";
855
1277
  name: string;
856
1278
  args: StyleValue;
1279
+ hidden?: boolean;
1280
+ } | {
1281
+ type: "image";
1282
+ value: {
1283
+ type: "asset";
1284
+ value: string;
1285
+ } | {
1286
+ type: "url";
1287
+ url: string;
1288
+ };
1289
+ hidden?: boolean | undefined;
857
1290
  })[];
858
1291
  hidden?: boolean | undefined;
859
1292
  } | {
860
1293
  type: "invalid";
861
1294
  value: string;
1295
+ hidden?: boolean | undefined;
862
1296
  })[];
1297
+ hidden?: boolean | undefined;
863
1298
  }>;
864
1299
  export type LayersValue = z.infer<typeof LayersValue>;
865
1300
  declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
@@ -910,23 +1345,29 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
910
1345
  type: z.ZodLiteral<"unit">;
911
1346
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
912
1347
  value: z.ZodNumber;
1348
+ hidden: z.ZodOptional<z.ZodBoolean>;
913
1349
  }, "strip", z.ZodTypeAny, {
914
1350
  type: "unit";
915
1351
  value: number;
916
1352
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1353
+ hidden?: boolean | undefined;
917
1354
  }, {
918
1355
  type: "unit";
919
1356
  value: number;
920
1357
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1358
+ hidden?: boolean | undefined;
921
1359
  }>, z.ZodObject<{
922
1360
  type: z.ZodLiteral<"keyword">;
923
1361
  value: z.ZodString;
1362
+ hidden: z.ZodOptional<z.ZodBoolean>;
924
1363
  }, "strip", z.ZodTypeAny, {
925
1364
  type: "keyword";
926
1365
  value: string;
1366
+ hidden?: boolean | undefined;
927
1367
  }, {
928
1368
  type: "keyword";
929
1369
  value: string;
1370
+ hidden?: boolean | undefined;
930
1371
  }>, z.ZodObject<{
931
1372
  type: z.ZodLiteral<"unparsed">;
932
1373
  value: z.ZodString;
@@ -987,23 +1428,29 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
987
1428
  type: z.ZodLiteral<"unit">;
988
1429
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
989
1430
  value: z.ZodNumber;
1431
+ hidden: z.ZodOptional<z.ZodBoolean>;
990
1432
  }, "strip", z.ZodTypeAny, {
991
1433
  type: "unit";
992
1434
  value: number;
993
1435
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1436
+ hidden?: boolean | undefined;
994
1437
  }, {
995
1438
  type: "unit";
996
1439
  value: number;
997
1440
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1441
+ hidden?: boolean | undefined;
998
1442
  }>, z.ZodObject<{
999
1443
  type: z.ZodLiteral<"keyword">;
1000
1444
  value: z.ZodString;
1445
+ hidden: z.ZodOptional<z.ZodBoolean>;
1001
1446
  }, "strip", z.ZodTypeAny, {
1002
1447
  type: "keyword";
1003
1448
  value: string;
1449
+ hidden?: boolean | undefined;
1004
1450
  }, {
1005
1451
  type: "keyword";
1006
1452
  value: string;
1453
+ hidden?: boolean | undefined;
1007
1454
  }>, z.ZodObject<{
1008
1455
  type: z.ZodLiteral<"unparsed">;
1009
1456
  value: z.ZodString;
@@ -1016,32 +1463,79 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1016
1463
  type: "unparsed";
1017
1464
  value: string;
1018
1465
  hidden?: boolean | undefined;
1466
+ }>, z.ZodObject<{
1467
+ type: z.ZodLiteral<"image">;
1468
+ value: z.ZodUnion<[z.ZodObject<{
1469
+ type: z.ZodLiteral<"asset">;
1470
+ value: z.ZodString;
1471
+ }, "strip", z.ZodTypeAny, {
1472
+ type: "asset";
1473
+ value: string;
1474
+ }, {
1475
+ type: "asset";
1476
+ value: string;
1477
+ }>, z.ZodObject<{
1478
+ type: z.ZodLiteral<"url">;
1479
+ url: z.ZodString;
1480
+ }, "strip", z.ZodTypeAny, {
1481
+ type: "url";
1482
+ url: string;
1483
+ }, {
1484
+ type: "url";
1485
+ url: string;
1486
+ }>]>;
1487
+ hidden: z.ZodOptional<z.ZodBoolean>;
1488
+ }, "strip", z.ZodTypeAny, {
1489
+ type: "image";
1490
+ value: {
1491
+ type: "asset";
1492
+ value: string;
1493
+ } | {
1494
+ type: "url";
1495
+ url: string;
1496
+ };
1497
+ hidden?: boolean | undefined;
1498
+ }, {
1499
+ type: "image";
1500
+ value: {
1501
+ type: "asset";
1502
+ value: string;
1503
+ } | {
1504
+ type: "url";
1505
+ url: string;
1506
+ };
1507
+ hidden?: boolean | undefined;
1019
1508
  }>, z.ZodObject<{
1020
1509
  type: z.ZodLiteral<"rgb">;
1021
1510
  r: z.ZodNumber;
1022
1511
  g: z.ZodNumber;
1023
1512
  b: z.ZodNumber;
1024
1513
  alpha: z.ZodNumber;
1514
+ hidden: z.ZodOptional<z.ZodBoolean>;
1025
1515
  }, "strip", z.ZodTypeAny, {
1026
1516
  type: "rgb";
1027
1517
  r: number;
1028
1518
  g: number;
1029
1519
  b: number;
1030
1520
  alpha: number;
1521
+ hidden?: boolean | undefined;
1031
1522
  }, {
1032
1523
  type: "rgb";
1033
1524
  r: number;
1034
1525
  g: number;
1035
1526
  b: number;
1036
1527
  alpha: number;
1528
+ hidden?: boolean | undefined;
1037
1529
  }>, z.ZodType<{
1038
1530
  type: "function";
1039
1531
  name: string;
1040
1532
  args: StyleValue;
1533
+ hidden?: boolean;
1041
1534
  }, z.ZodTypeDef, {
1042
1535
  type: "function";
1043
1536
  name: string;
1044
1537
  args: StyleValue;
1538
+ hidden?: boolean;
1045
1539
  }>]>, "many">;
1046
1540
  hidden: z.ZodOptional<z.ZodBoolean>;
1047
1541
  }, "strip", z.ZodTypeAny, {
@@ -1050,9 +1544,11 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1050
1544
  type: "unit";
1051
1545
  value: number;
1052
1546
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1547
+ hidden?: boolean | undefined;
1053
1548
  } | {
1054
1549
  type: "keyword";
1055
1550
  value: string;
1551
+ hidden?: boolean | undefined;
1056
1552
  } | {
1057
1553
  type: "unparsed";
1058
1554
  value: string;
@@ -1063,10 +1559,22 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1063
1559
  g: number;
1064
1560
  b: number;
1065
1561
  alpha: number;
1562
+ hidden?: boolean | undefined;
1066
1563
  } | {
1067
1564
  type: "function";
1068
1565
  name: string;
1069
1566
  args: StyleValue;
1567
+ hidden?: boolean;
1568
+ } | {
1569
+ type: "image";
1570
+ value: {
1571
+ type: "asset";
1572
+ value: string;
1573
+ } | {
1574
+ type: "url";
1575
+ url: string;
1576
+ };
1577
+ hidden?: boolean | undefined;
1070
1578
  })[];
1071
1579
  hidden?: boolean | undefined;
1072
1580
  }, {
@@ -1075,9 +1583,11 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1075
1583
  type: "unit";
1076
1584
  value: number;
1077
1585
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1586
+ hidden?: boolean | undefined;
1078
1587
  } | {
1079
1588
  type: "keyword";
1080
1589
  value: string;
1590
+ hidden?: boolean | undefined;
1081
1591
  } | {
1082
1592
  type: "unparsed";
1083
1593
  value: string;
@@ -1088,47 +1598,96 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1088
1598
  g: number;
1089
1599
  b: number;
1090
1600
  alpha: number;
1601
+ hidden?: boolean | undefined;
1091
1602
  } | {
1092
1603
  type: "function";
1093
1604
  name: string;
1094
1605
  args: StyleValue;
1606
+ hidden?: boolean;
1607
+ } | {
1608
+ type: "image";
1609
+ value: {
1610
+ type: "asset";
1611
+ value: string;
1612
+ } | {
1613
+ type: "url";
1614
+ url: string;
1615
+ };
1616
+ hidden?: boolean | undefined;
1095
1617
  })[];
1096
1618
  hidden?: boolean | undefined;
1097
1619
  }>, z.ZodObject<{
1098
- type: z.ZodLiteral<"invalid">;
1099
- value: z.ZodString;
1620
+ type: z.ZodLiteral<"rgb">;
1621
+ r: z.ZodNumber;
1622
+ g: z.ZodNumber;
1623
+ b: z.ZodNumber;
1624
+ alpha: z.ZodNumber;
1625
+ hidden: z.ZodOptional<z.ZodBoolean>;
1100
1626
  }, "strip", z.ZodTypeAny, {
1101
- type: "invalid";
1102
- value: string;
1627
+ type: "rgb";
1628
+ r: number;
1629
+ g: number;
1630
+ b: number;
1631
+ alpha: number;
1632
+ hidden?: boolean | undefined;
1103
1633
  }, {
1104
- type: "invalid";
1634
+ type: "rgb";
1635
+ r: number;
1636
+ g: number;
1637
+ b: number;
1638
+ alpha: number;
1639
+ hidden?: boolean | undefined;
1640
+ }>, z.ZodObject<{
1641
+ type: z.ZodLiteral<"invalid">;
1642
+ value: z.ZodString;
1643
+ hidden: z.ZodOptional<z.ZodBoolean>;
1644
+ }, "strip", z.ZodTypeAny, {
1645
+ type: "invalid";
1646
+ value: string;
1647
+ hidden?: boolean | undefined;
1648
+ }, {
1649
+ type: "invalid";
1105
1650
  value: string;
1651
+ hidden?: boolean | undefined;
1106
1652
  }>, z.ZodType<{
1107
1653
  type: "function";
1108
1654
  name: string;
1109
1655
  args: StyleValue;
1656
+ hidden?: boolean;
1110
1657
  }, z.ZodTypeDef, {
1111
1658
  type: "function";
1112
1659
  name: string;
1113
1660
  args: StyleValue;
1661
+ hidden?: boolean;
1114
1662
  }>]>, "many">;
1663
+ hidden: z.ZodOptional<z.ZodBoolean>;
1115
1664
  }, "strip", z.ZodTypeAny, {
1116
1665
  type: "layers";
1117
1666
  value: ({
1118
1667
  type: "unit";
1119
1668
  value: number;
1120
1669
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1670
+ hidden?: boolean | undefined;
1121
1671
  } | {
1122
1672
  type: "keyword";
1123
1673
  value: string;
1674
+ hidden?: boolean | undefined;
1124
1675
  } | {
1125
1676
  type: "unparsed";
1126
1677
  value: string;
1127
1678
  hidden?: boolean | undefined;
1679
+ } | {
1680
+ type: "rgb";
1681
+ r: number;
1682
+ g: number;
1683
+ b: number;
1684
+ alpha: number;
1685
+ hidden?: boolean | undefined;
1128
1686
  } | {
1129
1687
  type: "function";
1130
1688
  name: string;
1131
1689
  args: StyleValue;
1690
+ hidden?: boolean;
1132
1691
  } | {
1133
1692
  type: "image";
1134
1693
  value: {
@@ -1145,9 +1704,11 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1145
1704
  type: "unit";
1146
1705
  value: number;
1147
1706
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1707
+ hidden?: boolean | undefined;
1148
1708
  } | {
1149
1709
  type: "keyword";
1150
1710
  value: string;
1711
+ hidden?: boolean | undefined;
1151
1712
  } | {
1152
1713
  type: "unparsed";
1153
1714
  value: string;
@@ -1158,33 +1719,57 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1158
1719
  g: number;
1159
1720
  b: number;
1160
1721
  alpha: number;
1722
+ hidden?: boolean | undefined;
1161
1723
  } | {
1162
1724
  type: "function";
1163
1725
  name: string;
1164
1726
  args: StyleValue;
1727
+ hidden?: boolean;
1728
+ } | {
1729
+ type: "image";
1730
+ value: {
1731
+ type: "asset";
1732
+ value: string;
1733
+ } | {
1734
+ type: "url";
1735
+ url: string;
1736
+ };
1737
+ hidden?: boolean | undefined;
1165
1738
  })[];
1166
1739
  hidden?: boolean | undefined;
1167
1740
  } | {
1168
1741
  type: "invalid";
1169
1742
  value: string;
1743
+ hidden?: boolean | undefined;
1170
1744
  })[];
1745
+ hidden?: boolean | undefined;
1171
1746
  }, {
1172
1747
  type: "layers";
1173
1748
  value: ({
1174
1749
  type: "unit";
1175
1750
  value: number;
1176
1751
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1752
+ hidden?: boolean | undefined;
1177
1753
  } | {
1178
1754
  type: "keyword";
1179
1755
  value: string;
1756
+ hidden?: boolean | undefined;
1180
1757
  } | {
1181
1758
  type: "unparsed";
1182
1759
  value: string;
1183
1760
  hidden?: boolean | undefined;
1761
+ } | {
1762
+ type: "rgb";
1763
+ r: number;
1764
+ g: number;
1765
+ b: number;
1766
+ alpha: number;
1767
+ hidden?: boolean | undefined;
1184
1768
  } | {
1185
1769
  type: "function";
1186
1770
  name: string;
1187
1771
  args: StyleValue;
1772
+ hidden?: boolean;
1188
1773
  } | {
1189
1774
  type: "image";
1190
1775
  value: {
@@ -1201,9 +1786,11 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1201
1786
  type: "unit";
1202
1787
  value: number;
1203
1788
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1789
+ hidden?: boolean | undefined;
1204
1790
  } | {
1205
1791
  type: "keyword";
1206
1792
  value: string;
1793
+ hidden?: boolean | undefined;
1207
1794
  } | {
1208
1795
  type: "unparsed";
1209
1796
  value: string;
@@ -1214,64 +1801,90 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1214
1801
  g: number;
1215
1802
  b: number;
1216
1803
  alpha: number;
1804
+ hidden?: boolean | undefined;
1217
1805
  } | {
1218
1806
  type: "function";
1219
1807
  name: string;
1220
1808
  args: StyleValue;
1809
+ hidden?: boolean;
1810
+ } | {
1811
+ type: "image";
1812
+ value: {
1813
+ type: "asset";
1814
+ value: string;
1815
+ } | {
1816
+ type: "url";
1817
+ url: string;
1818
+ };
1819
+ hidden?: boolean | undefined;
1221
1820
  })[];
1222
1821
  hidden?: boolean | undefined;
1223
1822
  } | {
1224
1823
  type: "invalid";
1225
1824
  value: string;
1825
+ hidden?: boolean | undefined;
1226
1826
  })[];
1827
+ hidden?: boolean | undefined;
1227
1828
  }>, z.ZodObject<{
1228
1829
  type: z.ZodLiteral<"unit">;
1229
1830
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
1230
1831
  value: z.ZodNumber;
1832
+ hidden: z.ZodOptional<z.ZodBoolean>;
1231
1833
  }, "strip", z.ZodTypeAny, {
1232
1834
  type: "unit";
1233
1835
  value: number;
1234
1836
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1837
+ hidden?: boolean | undefined;
1235
1838
  }, {
1236
1839
  type: "unit";
1237
1840
  value: number;
1238
1841
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1842
+ hidden?: boolean | undefined;
1239
1843
  }>, z.ZodObject<{
1240
1844
  type: z.ZodLiteral<"keyword">;
1241
1845
  value: z.ZodString;
1846
+ hidden: z.ZodOptional<z.ZodBoolean>;
1242
1847
  }, "strip", z.ZodTypeAny, {
1243
1848
  type: "keyword";
1244
1849
  value: string;
1850
+ hidden?: boolean | undefined;
1245
1851
  }, {
1246
1852
  type: "keyword";
1247
1853
  value: string;
1854
+ hidden?: boolean | undefined;
1248
1855
  }>, z.ZodObject<{
1249
1856
  type: z.ZodLiteral<"fontFamily">;
1250
1857
  value: z.ZodArray<z.ZodString, "many">;
1858
+ hidden: z.ZodOptional<z.ZodBoolean>;
1251
1859
  }, "strip", z.ZodTypeAny, {
1252
1860
  type: "fontFamily";
1253
1861
  value: string[];
1862
+ hidden?: boolean | undefined;
1254
1863
  }, {
1255
1864
  type: "fontFamily";
1256
1865
  value: string[];
1866
+ hidden?: boolean | undefined;
1257
1867
  }>, z.ZodObject<{
1258
1868
  type: z.ZodLiteral<"rgb">;
1259
1869
  r: z.ZodNumber;
1260
1870
  g: z.ZodNumber;
1261
1871
  b: z.ZodNumber;
1262
1872
  alpha: z.ZodNumber;
1873
+ hidden: z.ZodOptional<z.ZodBoolean>;
1263
1874
  }, "strip", z.ZodTypeAny, {
1264
1875
  type: "rgb";
1265
1876
  r: number;
1266
1877
  g: number;
1267
1878
  b: number;
1268
1879
  alpha: number;
1880
+ hidden?: boolean | undefined;
1269
1881
  }, {
1270
1882
  type: "rgb";
1271
1883
  r: number;
1272
1884
  g: number;
1273
1885
  b: number;
1274
1886
  alpha: number;
1887
+ hidden?: boolean | undefined;
1275
1888
  }>, z.ZodObject<{
1276
1889
  type: z.ZodLiteral<"unparsed">;
1277
1890
  value: z.ZodString;
@@ -1290,23 +1903,29 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1290
1903
  type: z.ZodLiteral<"unit">;
1291
1904
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
1292
1905
  value: z.ZodNumber;
1906
+ hidden: z.ZodOptional<z.ZodBoolean>;
1293
1907
  }, "strip", z.ZodTypeAny, {
1294
1908
  type: "unit";
1295
1909
  value: number;
1296
1910
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1911
+ hidden?: boolean | undefined;
1297
1912
  }, {
1298
1913
  type: "unit";
1299
1914
  value: number;
1300
1915
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1916
+ hidden?: boolean | undefined;
1301
1917
  }>, z.ZodObject<{
1302
1918
  type: z.ZodLiteral<"keyword">;
1303
1919
  value: z.ZodString;
1920
+ hidden: z.ZodOptional<z.ZodBoolean>;
1304
1921
  }, "strip", z.ZodTypeAny, {
1305
1922
  type: "keyword";
1306
1923
  value: string;
1924
+ hidden?: boolean | undefined;
1307
1925
  }, {
1308
1926
  type: "keyword";
1309
1927
  value: string;
1928
+ hidden?: boolean | undefined;
1310
1929
  }>, z.ZodObject<{
1311
1930
  type: z.ZodLiteral<"unparsed">;
1312
1931
  value: z.ZodString;
@@ -1319,32 +1938,79 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1319
1938
  type: "unparsed";
1320
1939
  value: string;
1321
1940
  hidden?: boolean | undefined;
1941
+ }>, z.ZodObject<{
1942
+ type: z.ZodLiteral<"image">;
1943
+ value: z.ZodUnion<[z.ZodObject<{
1944
+ type: z.ZodLiteral<"asset">;
1945
+ value: z.ZodString;
1946
+ }, "strip", z.ZodTypeAny, {
1947
+ type: "asset";
1948
+ value: string;
1949
+ }, {
1950
+ type: "asset";
1951
+ value: string;
1952
+ }>, z.ZodObject<{
1953
+ type: z.ZodLiteral<"url">;
1954
+ url: z.ZodString;
1955
+ }, "strip", z.ZodTypeAny, {
1956
+ type: "url";
1957
+ url: string;
1958
+ }, {
1959
+ type: "url";
1960
+ url: string;
1961
+ }>]>;
1962
+ hidden: z.ZodOptional<z.ZodBoolean>;
1963
+ }, "strip", z.ZodTypeAny, {
1964
+ type: "image";
1965
+ value: {
1966
+ type: "asset";
1967
+ value: string;
1968
+ } | {
1969
+ type: "url";
1970
+ url: string;
1971
+ };
1972
+ hidden?: boolean | undefined;
1973
+ }, {
1974
+ type: "image";
1975
+ value: {
1976
+ type: "asset";
1977
+ value: string;
1978
+ } | {
1979
+ type: "url";
1980
+ url: string;
1981
+ };
1982
+ hidden?: boolean | undefined;
1322
1983
  }>, z.ZodObject<{
1323
1984
  type: z.ZodLiteral<"rgb">;
1324
1985
  r: z.ZodNumber;
1325
1986
  g: z.ZodNumber;
1326
1987
  b: z.ZodNumber;
1327
1988
  alpha: z.ZodNumber;
1989
+ hidden: z.ZodOptional<z.ZodBoolean>;
1328
1990
  }, "strip", z.ZodTypeAny, {
1329
1991
  type: "rgb";
1330
1992
  r: number;
1331
1993
  g: number;
1332
1994
  b: number;
1333
1995
  alpha: number;
1996
+ hidden?: boolean | undefined;
1334
1997
  }, {
1335
1998
  type: "rgb";
1336
1999
  r: number;
1337
2000
  g: number;
1338
2001
  b: number;
1339
2002
  alpha: number;
2003
+ hidden?: boolean | undefined;
1340
2004
  }>, z.ZodType<{
1341
2005
  type: "function";
1342
2006
  name: string;
1343
2007
  args: StyleValue;
2008
+ hidden?: boolean;
1344
2009
  }, z.ZodTypeDef, {
1345
2010
  type: "function";
1346
2011
  name: string;
1347
2012
  args: StyleValue;
2013
+ hidden?: boolean;
1348
2014
  }>]>, "many">;
1349
2015
  hidden: z.ZodOptional<z.ZodBoolean>;
1350
2016
  }, "strip", z.ZodTypeAny, {
@@ -1353,9 +2019,11 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1353
2019
  type: "unit";
1354
2020
  value: number;
1355
2021
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2022
+ hidden?: boolean | undefined;
1356
2023
  } | {
1357
2024
  type: "keyword";
1358
2025
  value: string;
2026
+ hidden?: boolean | undefined;
1359
2027
  } | {
1360
2028
  type: "unparsed";
1361
2029
  value: string;
@@ -1366,101 +2034,35 @@ declare const ValidStaticStyleValue: z.ZodUnion<[z.ZodObject<{
1366
2034
  g: number;
1367
2035
  b: number;
1368
2036
  alpha: number;
2037
+ hidden?: boolean | undefined;
1369
2038
  } | {
1370
2039
  type: "function";
1371
2040
  name: string;
1372
2041
  args: StyleValue;
1373
- })[];
1374
- hidden?: boolean | undefined;
1375
- }, {
1376
- type: "tuple";
1377
- value: ({
1378
- type: "unit";
1379
- value: number;
1380
- unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2042
+ hidden?: boolean;
1381
2043
  } | {
1382
- type: "keyword";
1383
- value: string;
1384
- } | {
1385
- type: "unparsed";
1386
- value: string;
2044
+ type: "image";
2045
+ value: {
2046
+ type: "asset";
2047
+ value: string;
2048
+ } | {
2049
+ type: "url";
2050
+ url: string;
2051
+ };
1387
2052
  hidden?: boolean | undefined;
1388
- } | {
1389
- type: "rgb";
1390
- r: number;
1391
- g: number;
1392
- b: number;
1393
- alpha: number;
1394
- } | {
1395
- type: "function";
1396
- name: string;
1397
- args: StyleValue;
1398
2053
  })[];
1399
2054
  hidden?: boolean | undefined;
1400
- }>, z.ZodType<{
1401
- type: "function";
1402
- name: string;
1403
- args: StyleValue;
1404
- }, z.ZodTypeDef, {
1405
- type: "function";
1406
- name: string;
1407
- args: StyleValue;
1408
- }>, z.ZodObject<{
1409
- type: z.ZodLiteral<"guaranteedInvalid">;
1410
- }, "strip", z.ZodTypeAny, {
1411
- type: "guaranteedInvalid";
1412
2055
  }, {
1413
- type: "guaranteedInvalid";
1414
- }>]>;
1415
- export type ValidStaticStyleValue = z.infer<typeof ValidStaticStyleValue>;
1416
- /**
1417
- * All StyleValue types that going to need wrapping into a CSS variable when rendered
1418
- * on canvas inside builder.
1419
- * Values like InvalidValue, UnsetValue, VarValue don't need to be wrapped
1420
- */
1421
- export declare const isValidStaticStyleValue: (styleValue: StyleValue) => styleValue is {
1422
- type: "unit";
1423
- value: number;
1424
- unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1425
- } | {
1426
- type: "keyword";
1427
- value: string;
1428
- } | {
1429
- type: "unparsed";
1430
- value: string;
1431
- hidden?: boolean | undefined;
1432
- } | {
1433
- type: "fontFamily";
1434
- value: string[];
1435
- } | {
1436
- type: "rgb";
1437
- r: number;
1438
- g: number;
1439
- b: number;
1440
- alpha: number;
1441
- } | {
1442
- type: "function";
1443
- name: string;
1444
- args: StyleValue;
1445
- } | {
1446
- type: "image";
1447
- value: {
1448
- type: "asset";
1449
- value: string;
1450
- } | {
1451
- type: "url";
1452
- url: string;
1453
- };
1454
- hidden?: boolean | undefined;
1455
- } | {
1456
2056
  type: "tuple";
1457
2057
  value: ({
1458
2058
  type: "unit";
1459
2059
  value: number;
1460
2060
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2061
+ hidden?: boolean | undefined;
1461
2062
  } | {
1462
2063
  type: "keyword";
1463
2064
  value: string;
2065
+ hidden?: boolean | undefined;
1464
2066
  } | {
1465
2067
  type: "unparsed";
1466
2068
  value: string;
@@ -1471,29 +2073,12 @@ export declare const isValidStaticStyleValue: (styleValue: StyleValue) => styleV
1471
2073
  g: number;
1472
2074
  b: number;
1473
2075
  alpha: number;
1474
- } | {
1475
- type: "function";
1476
- name: string;
1477
- args: StyleValue;
1478
- })[];
1479
- hidden?: boolean | undefined;
1480
- } | {
1481
- type: "layers";
1482
- value: ({
1483
- type: "unit";
1484
- value: number;
1485
- unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1486
- } | {
1487
- type: "keyword";
1488
- value: string;
1489
- } | {
1490
- type: "unparsed";
1491
- value: string;
1492
2076
  hidden?: boolean | undefined;
1493
2077
  } | {
1494
2078
  type: "function";
1495
2079
  name: string;
1496
2080
  args: StyleValue;
2081
+ hidden?: boolean;
1497
2082
  } | {
1498
2083
  type: "image";
1499
2084
  value: {
@@ -1504,38 +2089,35 @@ export declare const isValidStaticStyleValue: (styleValue: StyleValue) => styleV
1504
2089
  url: string;
1505
2090
  };
1506
2091
  hidden?: boolean | undefined;
1507
- } | {
1508
- type: "tuple";
1509
- value: ({
1510
- type: "unit";
1511
- value: number;
1512
- unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
1513
- } | {
1514
- type: "keyword";
1515
- value: string;
1516
- } | {
1517
- type: "unparsed";
1518
- value: string;
1519
- hidden?: boolean | undefined;
1520
- } | {
1521
- type: "rgb";
1522
- r: number;
1523
- g: number;
1524
- b: number;
1525
- alpha: number;
1526
- } | {
1527
- type: "function";
1528
- name: string;
1529
- args: StyleValue;
1530
- })[];
1531
- hidden?: boolean | undefined;
1532
- } | {
1533
- type: "invalid";
1534
- value: string;
1535
2092
  })[];
1536
- } | {
2093
+ hidden?: boolean | undefined;
2094
+ }>, z.ZodType<{
2095
+ type: "function";
2096
+ name: string;
2097
+ args: StyleValue;
2098
+ hidden?: boolean;
2099
+ }, z.ZodTypeDef, {
2100
+ type: "function";
2101
+ name: string;
2102
+ args: StyleValue;
2103
+ hidden?: boolean;
2104
+ }>, z.ZodObject<{
2105
+ type: z.ZodLiteral<"guaranteedInvalid">;
2106
+ hidden: z.ZodOptional<z.ZodBoolean>;
2107
+ }, "strip", z.ZodTypeAny, {
1537
2108
  type: "guaranteedInvalid";
1538
- };
2109
+ hidden?: boolean | undefined;
2110
+ }, {
2111
+ type: "guaranteedInvalid";
2112
+ hidden?: boolean | undefined;
2113
+ }>]>;
2114
+ export type ValidStaticStyleValue = z.infer<typeof ValidStaticStyleValue>;
2115
+ /**
2116
+ * All StyleValue types that going to need wrapping into a CSS variable when rendered
2117
+ * on canvas inside builder.
2118
+ * Values like InvalidValue, UnsetValue, VarValue don't need to be wrapped
2119
+ */
2120
+ export declare const isValidStaticStyleValue: (styleValue: StyleValue) => styleValue is ValidStaticStyleValue;
1539
2121
  declare const VarValue: z.ZodObject<{
1540
2122
  type: z.ZodLiteral<"var">;
1541
2123
  value: z.ZodString;
@@ -1587,23 +2169,29 @@ declare const VarValue: z.ZodObject<{
1587
2169
  type: z.ZodLiteral<"unit">;
1588
2170
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
1589
2171
  value: z.ZodNumber;
2172
+ hidden: z.ZodOptional<z.ZodBoolean>;
1590
2173
  }, "strip", z.ZodTypeAny, {
1591
2174
  type: "unit";
1592
2175
  value: number;
1593
2176
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2177
+ hidden?: boolean | undefined;
1594
2178
  }, {
1595
2179
  type: "unit";
1596
2180
  value: number;
1597
2181
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2182
+ hidden?: boolean | undefined;
1598
2183
  }>, z.ZodObject<{
1599
2184
  type: z.ZodLiteral<"keyword">;
1600
2185
  value: z.ZodString;
2186
+ hidden: z.ZodOptional<z.ZodBoolean>;
1601
2187
  }, "strip", z.ZodTypeAny, {
1602
2188
  type: "keyword";
1603
2189
  value: string;
2190
+ hidden?: boolean | undefined;
1604
2191
  }, {
1605
2192
  type: "keyword";
1606
2193
  value: string;
2194
+ hidden?: boolean | undefined;
1607
2195
  }>, z.ZodObject<{
1608
2196
  type: z.ZodLiteral<"unparsed">;
1609
2197
  value: z.ZodString;
@@ -1664,23 +2252,29 @@ declare const VarValue: z.ZodObject<{
1664
2252
  type: z.ZodLiteral<"unit">;
1665
2253
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
1666
2254
  value: z.ZodNumber;
2255
+ hidden: z.ZodOptional<z.ZodBoolean>;
1667
2256
  }, "strip", z.ZodTypeAny, {
1668
2257
  type: "unit";
1669
2258
  value: number;
1670
2259
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2260
+ hidden?: boolean | undefined;
1671
2261
  }, {
1672
2262
  type: "unit";
1673
2263
  value: number;
1674
2264
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2265
+ hidden?: boolean | undefined;
1675
2266
  }>, z.ZodObject<{
1676
2267
  type: z.ZodLiteral<"keyword">;
1677
2268
  value: z.ZodString;
2269
+ hidden: z.ZodOptional<z.ZodBoolean>;
1678
2270
  }, "strip", z.ZodTypeAny, {
1679
2271
  type: "keyword";
1680
2272
  value: string;
2273
+ hidden?: boolean | undefined;
1681
2274
  }, {
1682
2275
  type: "keyword";
1683
2276
  value: string;
2277
+ hidden?: boolean | undefined;
1684
2278
  }>, z.ZodObject<{
1685
2279
  type: z.ZodLiteral<"unparsed">;
1686
2280
  value: z.ZodString;
@@ -1693,32 +2287,79 @@ declare const VarValue: z.ZodObject<{
1693
2287
  type: "unparsed";
1694
2288
  value: string;
1695
2289
  hidden?: boolean | undefined;
2290
+ }>, z.ZodObject<{
2291
+ type: z.ZodLiteral<"image">;
2292
+ value: z.ZodUnion<[z.ZodObject<{
2293
+ type: z.ZodLiteral<"asset">;
2294
+ value: z.ZodString;
2295
+ }, "strip", z.ZodTypeAny, {
2296
+ type: "asset";
2297
+ value: string;
2298
+ }, {
2299
+ type: "asset";
2300
+ value: string;
2301
+ }>, z.ZodObject<{
2302
+ type: z.ZodLiteral<"url">;
2303
+ url: z.ZodString;
2304
+ }, "strip", z.ZodTypeAny, {
2305
+ type: "url";
2306
+ url: string;
2307
+ }, {
2308
+ type: "url";
2309
+ url: string;
2310
+ }>]>;
2311
+ hidden: z.ZodOptional<z.ZodBoolean>;
2312
+ }, "strip", z.ZodTypeAny, {
2313
+ type: "image";
2314
+ value: {
2315
+ type: "asset";
2316
+ value: string;
2317
+ } | {
2318
+ type: "url";
2319
+ url: string;
2320
+ };
2321
+ hidden?: boolean | undefined;
2322
+ }, {
2323
+ type: "image";
2324
+ value: {
2325
+ type: "asset";
2326
+ value: string;
2327
+ } | {
2328
+ type: "url";
2329
+ url: string;
2330
+ };
2331
+ hidden?: boolean | undefined;
1696
2332
  }>, z.ZodObject<{
1697
2333
  type: z.ZodLiteral<"rgb">;
1698
2334
  r: z.ZodNumber;
1699
2335
  g: z.ZodNumber;
1700
2336
  b: z.ZodNumber;
1701
2337
  alpha: z.ZodNumber;
2338
+ hidden: z.ZodOptional<z.ZodBoolean>;
1702
2339
  }, "strip", z.ZodTypeAny, {
1703
2340
  type: "rgb";
1704
2341
  r: number;
1705
2342
  g: number;
1706
2343
  b: number;
1707
2344
  alpha: number;
2345
+ hidden?: boolean | undefined;
1708
2346
  }, {
1709
2347
  type: "rgb";
1710
2348
  r: number;
1711
2349
  g: number;
1712
2350
  b: number;
1713
2351
  alpha: number;
2352
+ hidden?: boolean | undefined;
1714
2353
  }>, z.ZodType<{
1715
2354
  type: "function";
1716
2355
  name: string;
1717
2356
  args: StyleValue;
2357
+ hidden?: boolean;
1718
2358
  }, z.ZodTypeDef, {
1719
2359
  type: "function";
1720
2360
  name: string;
1721
2361
  args: StyleValue;
2362
+ hidden?: boolean;
1722
2363
  }>]>, "many">;
1723
2364
  hidden: z.ZodOptional<z.ZodBoolean>;
1724
2365
  }, "strip", z.ZodTypeAny, {
@@ -1727,9 +2368,11 @@ declare const VarValue: z.ZodObject<{
1727
2368
  type: "unit";
1728
2369
  value: number;
1729
2370
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2371
+ hidden?: boolean | undefined;
1730
2372
  } | {
1731
2373
  type: "keyword";
1732
2374
  value: string;
2375
+ hidden?: boolean | undefined;
1733
2376
  } | {
1734
2377
  type: "unparsed";
1735
2378
  value: string;
@@ -1740,10 +2383,22 @@ declare const VarValue: z.ZodObject<{
1740
2383
  g: number;
1741
2384
  b: number;
1742
2385
  alpha: number;
2386
+ hidden?: boolean | undefined;
1743
2387
  } | {
1744
2388
  type: "function";
1745
2389
  name: string;
1746
2390
  args: StyleValue;
2391
+ hidden?: boolean;
2392
+ } | {
2393
+ type: "image";
2394
+ value: {
2395
+ type: "asset";
2396
+ value: string;
2397
+ } | {
2398
+ type: "url";
2399
+ url: string;
2400
+ };
2401
+ hidden?: boolean | undefined;
1747
2402
  })[];
1748
2403
  hidden?: boolean | undefined;
1749
2404
  }, {
@@ -1752,9 +2407,11 @@ declare const VarValue: z.ZodObject<{
1752
2407
  type: "unit";
1753
2408
  value: number;
1754
2409
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2410
+ hidden?: boolean | undefined;
1755
2411
  } | {
1756
2412
  type: "keyword";
1757
2413
  value: string;
2414
+ hidden?: boolean | undefined;
1758
2415
  } | {
1759
2416
  type: "unparsed";
1760
2417
  value: string;
@@ -1765,47 +2422,96 @@ declare const VarValue: z.ZodObject<{
1765
2422
  g: number;
1766
2423
  b: number;
1767
2424
  alpha: number;
2425
+ hidden?: boolean | undefined;
1768
2426
  } | {
1769
2427
  type: "function";
1770
2428
  name: string;
1771
2429
  args: StyleValue;
2430
+ hidden?: boolean;
2431
+ } | {
2432
+ type: "image";
2433
+ value: {
2434
+ type: "asset";
2435
+ value: string;
2436
+ } | {
2437
+ type: "url";
2438
+ url: string;
2439
+ };
2440
+ hidden?: boolean | undefined;
1772
2441
  })[];
1773
2442
  hidden?: boolean | undefined;
2443
+ }>, z.ZodObject<{
2444
+ type: z.ZodLiteral<"rgb">;
2445
+ r: z.ZodNumber;
2446
+ g: z.ZodNumber;
2447
+ b: z.ZodNumber;
2448
+ alpha: z.ZodNumber;
2449
+ hidden: z.ZodOptional<z.ZodBoolean>;
2450
+ }, "strip", z.ZodTypeAny, {
2451
+ type: "rgb";
2452
+ r: number;
2453
+ g: number;
2454
+ b: number;
2455
+ alpha: number;
2456
+ hidden?: boolean | undefined;
2457
+ }, {
2458
+ type: "rgb";
2459
+ r: number;
2460
+ g: number;
2461
+ b: number;
2462
+ alpha: number;
2463
+ hidden?: boolean | undefined;
1774
2464
  }>, z.ZodObject<{
1775
2465
  type: z.ZodLiteral<"invalid">;
1776
2466
  value: z.ZodString;
2467
+ hidden: z.ZodOptional<z.ZodBoolean>;
1777
2468
  }, "strip", z.ZodTypeAny, {
1778
2469
  type: "invalid";
1779
2470
  value: string;
2471
+ hidden?: boolean | undefined;
1780
2472
  }, {
1781
2473
  type: "invalid";
1782
2474
  value: string;
2475
+ hidden?: boolean | undefined;
1783
2476
  }>, z.ZodType<{
1784
2477
  type: "function";
1785
2478
  name: string;
1786
2479
  args: StyleValue;
2480
+ hidden?: boolean;
1787
2481
  }, z.ZodTypeDef, {
1788
2482
  type: "function";
1789
2483
  name: string;
1790
2484
  args: StyleValue;
2485
+ hidden?: boolean;
1791
2486
  }>]>, "many">;
2487
+ hidden: z.ZodOptional<z.ZodBoolean>;
1792
2488
  }, "strip", z.ZodTypeAny, {
1793
2489
  type: "layers";
1794
2490
  value: ({
1795
2491
  type: "unit";
1796
2492
  value: number;
1797
2493
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2494
+ hidden?: boolean | undefined;
1798
2495
  } | {
1799
2496
  type: "keyword";
1800
2497
  value: string;
2498
+ hidden?: boolean | undefined;
1801
2499
  } | {
1802
2500
  type: "unparsed";
1803
2501
  value: string;
1804
2502
  hidden?: boolean | undefined;
2503
+ } | {
2504
+ type: "rgb";
2505
+ r: number;
2506
+ g: number;
2507
+ b: number;
2508
+ alpha: number;
2509
+ hidden?: boolean | undefined;
1805
2510
  } | {
1806
2511
  type: "function";
1807
2512
  name: string;
1808
2513
  args: StyleValue;
2514
+ hidden?: boolean;
1809
2515
  } | {
1810
2516
  type: "image";
1811
2517
  value: {
@@ -1822,9 +2528,11 @@ declare const VarValue: z.ZodObject<{
1822
2528
  type: "unit";
1823
2529
  value: number;
1824
2530
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2531
+ hidden?: boolean | undefined;
1825
2532
  } | {
1826
2533
  type: "keyword";
1827
2534
  value: string;
2535
+ hidden?: boolean | undefined;
1828
2536
  } | {
1829
2537
  type: "unparsed";
1830
2538
  value: string;
@@ -1835,33 +2543,57 @@ declare const VarValue: z.ZodObject<{
1835
2543
  g: number;
1836
2544
  b: number;
1837
2545
  alpha: number;
2546
+ hidden?: boolean | undefined;
1838
2547
  } | {
1839
2548
  type: "function";
1840
2549
  name: string;
1841
2550
  args: StyleValue;
2551
+ hidden?: boolean;
2552
+ } | {
2553
+ type: "image";
2554
+ value: {
2555
+ type: "asset";
2556
+ value: string;
2557
+ } | {
2558
+ type: "url";
2559
+ url: string;
2560
+ };
2561
+ hidden?: boolean | undefined;
1842
2562
  })[];
1843
2563
  hidden?: boolean | undefined;
1844
2564
  } | {
1845
2565
  type: "invalid";
1846
2566
  value: string;
2567
+ hidden?: boolean | undefined;
1847
2568
  })[];
2569
+ hidden?: boolean | undefined;
1848
2570
  }, {
1849
2571
  type: "layers";
1850
2572
  value: ({
1851
2573
  type: "unit";
1852
2574
  value: number;
1853
2575
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2576
+ hidden?: boolean | undefined;
1854
2577
  } | {
1855
2578
  type: "keyword";
1856
2579
  value: string;
2580
+ hidden?: boolean | undefined;
1857
2581
  } | {
1858
2582
  type: "unparsed";
1859
2583
  value: string;
1860
2584
  hidden?: boolean | undefined;
2585
+ } | {
2586
+ type: "rgb";
2587
+ r: number;
2588
+ g: number;
2589
+ b: number;
2590
+ alpha: number;
2591
+ hidden?: boolean | undefined;
1861
2592
  } | {
1862
2593
  type: "function";
1863
2594
  name: string;
1864
2595
  args: StyleValue;
2596
+ hidden?: boolean;
1865
2597
  } | {
1866
2598
  type: "image";
1867
2599
  value: {
@@ -1878,9 +2610,11 @@ declare const VarValue: z.ZodObject<{
1878
2610
  type: "unit";
1879
2611
  value: number;
1880
2612
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2613
+ hidden?: boolean | undefined;
1881
2614
  } | {
1882
2615
  type: "keyword";
1883
2616
  value: string;
2617
+ hidden?: boolean | undefined;
1884
2618
  } | {
1885
2619
  type: "unparsed";
1886
2620
  value: string;
@@ -1891,64 +2625,90 @@ declare const VarValue: z.ZodObject<{
1891
2625
  g: number;
1892
2626
  b: number;
1893
2627
  alpha: number;
2628
+ hidden?: boolean | undefined;
1894
2629
  } | {
1895
2630
  type: "function";
1896
2631
  name: string;
1897
2632
  args: StyleValue;
2633
+ hidden?: boolean;
2634
+ } | {
2635
+ type: "image";
2636
+ value: {
2637
+ type: "asset";
2638
+ value: string;
2639
+ } | {
2640
+ type: "url";
2641
+ url: string;
2642
+ };
2643
+ hidden?: boolean | undefined;
1898
2644
  })[];
1899
2645
  hidden?: boolean | undefined;
1900
2646
  } | {
1901
2647
  type: "invalid";
1902
2648
  value: string;
2649
+ hidden?: boolean | undefined;
1903
2650
  })[];
2651
+ hidden?: boolean | undefined;
1904
2652
  }>, z.ZodObject<{
1905
2653
  type: z.ZodLiteral<"unit">;
1906
2654
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
1907
2655
  value: z.ZodNumber;
2656
+ hidden: z.ZodOptional<z.ZodBoolean>;
1908
2657
  }, "strip", z.ZodTypeAny, {
1909
2658
  type: "unit";
1910
2659
  value: number;
1911
2660
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2661
+ hidden?: boolean | undefined;
1912
2662
  }, {
1913
2663
  type: "unit";
1914
2664
  value: number;
1915
2665
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2666
+ hidden?: boolean | undefined;
1916
2667
  }>, z.ZodObject<{
1917
2668
  type: z.ZodLiteral<"keyword">;
1918
2669
  value: z.ZodString;
2670
+ hidden: z.ZodOptional<z.ZodBoolean>;
1919
2671
  }, "strip", z.ZodTypeAny, {
1920
2672
  type: "keyword";
1921
2673
  value: string;
2674
+ hidden?: boolean | undefined;
1922
2675
  }, {
1923
2676
  type: "keyword";
1924
2677
  value: string;
2678
+ hidden?: boolean | undefined;
1925
2679
  }>, z.ZodObject<{
1926
2680
  type: z.ZodLiteral<"fontFamily">;
1927
2681
  value: z.ZodArray<z.ZodString, "many">;
2682
+ hidden: z.ZodOptional<z.ZodBoolean>;
1928
2683
  }, "strip", z.ZodTypeAny, {
1929
2684
  type: "fontFamily";
1930
2685
  value: string[];
2686
+ hidden?: boolean | undefined;
1931
2687
  }, {
1932
2688
  type: "fontFamily";
1933
2689
  value: string[];
2690
+ hidden?: boolean | undefined;
1934
2691
  }>, z.ZodObject<{
1935
2692
  type: z.ZodLiteral<"rgb">;
1936
2693
  r: z.ZodNumber;
1937
2694
  g: z.ZodNumber;
1938
2695
  b: z.ZodNumber;
1939
2696
  alpha: z.ZodNumber;
2697
+ hidden: z.ZodOptional<z.ZodBoolean>;
1940
2698
  }, "strip", z.ZodTypeAny, {
1941
2699
  type: "rgb";
1942
2700
  r: number;
1943
2701
  g: number;
1944
2702
  b: number;
1945
2703
  alpha: number;
2704
+ hidden?: boolean | undefined;
1946
2705
  }, {
1947
2706
  type: "rgb";
1948
2707
  r: number;
1949
2708
  g: number;
1950
2709
  b: number;
1951
2710
  alpha: number;
2711
+ hidden?: boolean | undefined;
1952
2712
  }>, z.ZodObject<{
1953
2713
  type: z.ZodLiteral<"unparsed">;
1954
2714
  value: z.ZodString;
@@ -1967,23 +2727,29 @@ declare const VarValue: z.ZodObject<{
1967
2727
  type: z.ZodLiteral<"unit">;
1968
2728
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
1969
2729
  value: z.ZodNumber;
2730
+ hidden: z.ZodOptional<z.ZodBoolean>;
1970
2731
  }, "strip", z.ZodTypeAny, {
1971
2732
  type: "unit";
1972
2733
  value: number;
1973
2734
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2735
+ hidden?: boolean | undefined;
1974
2736
  }, {
1975
2737
  type: "unit";
1976
2738
  value: number;
1977
2739
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2740
+ hidden?: boolean | undefined;
1978
2741
  }>, z.ZodObject<{
1979
2742
  type: z.ZodLiteral<"keyword">;
1980
2743
  value: z.ZodString;
2744
+ hidden: z.ZodOptional<z.ZodBoolean>;
1981
2745
  }, "strip", z.ZodTypeAny, {
1982
2746
  type: "keyword";
1983
2747
  value: string;
2748
+ hidden?: boolean | undefined;
1984
2749
  }, {
1985
2750
  type: "keyword";
1986
2751
  value: string;
2752
+ hidden?: boolean | undefined;
1987
2753
  }>, z.ZodObject<{
1988
2754
  type: z.ZodLiteral<"unparsed">;
1989
2755
  value: z.ZodString;
@@ -1996,32 +2762,79 @@ declare const VarValue: z.ZodObject<{
1996
2762
  type: "unparsed";
1997
2763
  value: string;
1998
2764
  hidden?: boolean | undefined;
2765
+ }>, z.ZodObject<{
2766
+ type: z.ZodLiteral<"image">;
2767
+ value: z.ZodUnion<[z.ZodObject<{
2768
+ type: z.ZodLiteral<"asset">;
2769
+ value: z.ZodString;
2770
+ }, "strip", z.ZodTypeAny, {
2771
+ type: "asset";
2772
+ value: string;
2773
+ }, {
2774
+ type: "asset";
2775
+ value: string;
2776
+ }>, z.ZodObject<{
2777
+ type: z.ZodLiteral<"url">;
2778
+ url: z.ZodString;
2779
+ }, "strip", z.ZodTypeAny, {
2780
+ type: "url";
2781
+ url: string;
2782
+ }, {
2783
+ type: "url";
2784
+ url: string;
2785
+ }>]>;
2786
+ hidden: z.ZodOptional<z.ZodBoolean>;
2787
+ }, "strip", z.ZodTypeAny, {
2788
+ type: "image";
2789
+ value: {
2790
+ type: "asset";
2791
+ value: string;
2792
+ } | {
2793
+ type: "url";
2794
+ url: string;
2795
+ };
2796
+ hidden?: boolean | undefined;
2797
+ }, {
2798
+ type: "image";
2799
+ value: {
2800
+ type: "asset";
2801
+ value: string;
2802
+ } | {
2803
+ type: "url";
2804
+ url: string;
2805
+ };
2806
+ hidden?: boolean | undefined;
1999
2807
  }>, z.ZodObject<{
2000
2808
  type: z.ZodLiteral<"rgb">;
2001
2809
  r: z.ZodNumber;
2002
2810
  g: z.ZodNumber;
2003
2811
  b: z.ZodNumber;
2004
2812
  alpha: z.ZodNumber;
2813
+ hidden: z.ZodOptional<z.ZodBoolean>;
2005
2814
  }, "strip", z.ZodTypeAny, {
2006
2815
  type: "rgb";
2007
2816
  r: number;
2008
2817
  g: number;
2009
2818
  b: number;
2010
2819
  alpha: number;
2820
+ hidden?: boolean | undefined;
2011
2821
  }, {
2012
2822
  type: "rgb";
2013
2823
  r: number;
2014
2824
  g: number;
2015
2825
  b: number;
2016
2826
  alpha: number;
2827
+ hidden?: boolean | undefined;
2017
2828
  }>, z.ZodType<{
2018
2829
  type: "function";
2019
2830
  name: string;
2020
2831
  args: StyleValue;
2832
+ hidden?: boolean;
2021
2833
  }, z.ZodTypeDef, {
2022
2834
  type: "function";
2023
2835
  name: string;
2024
2836
  args: StyleValue;
2837
+ hidden?: boolean;
2025
2838
  }>]>, "many">;
2026
2839
  hidden: z.ZodOptional<z.ZodBoolean>;
2027
2840
  }, "strip", z.ZodTypeAny, {
@@ -2030,9 +2843,11 @@ declare const VarValue: z.ZodObject<{
2030
2843
  type: "unit";
2031
2844
  value: number;
2032
2845
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2846
+ hidden?: boolean | undefined;
2033
2847
  } | {
2034
2848
  type: "keyword";
2035
2849
  value: string;
2850
+ hidden?: boolean | undefined;
2036
2851
  } | {
2037
2852
  type: "unparsed";
2038
2853
  value: string;
@@ -2043,10 +2858,22 @@ declare const VarValue: z.ZodObject<{
2043
2858
  g: number;
2044
2859
  b: number;
2045
2860
  alpha: number;
2861
+ hidden?: boolean | undefined;
2046
2862
  } | {
2047
2863
  type: "function";
2048
2864
  name: string;
2049
2865
  args: StyleValue;
2866
+ hidden?: boolean;
2867
+ } | {
2868
+ type: "image";
2869
+ value: {
2870
+ type: "asset";
2871
+ value: string;
2872
+ } | {
2873
+ type: "url";
2874
+ url: string;
2875
+ };
2876
+ hidden?: boolean | undefined;
2050
2877
  })[];
2051
2878
  hidden?: boolean | undefined;
2052
2879
  }, {
@@ -2055,9 +2882,11 @@ declare const VarValue: z.ZodObject<{
2055
2882
  type: "unit";
2056
2883
  value: number;
2057
2884
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2885
+ hidden?: boolean | undefined;
2058
2886
  } | {
2059
2887
  type: "keyword";
2060
2888
  value: string;
2889
+ hidden?: boolean | undefined;
2061
2890
  } | {
2062
2891
  type: "unparsed";
2063
2892
  value: string;
@@ -2068,27 +2897,45 @@ declare const VarValue: z.ZodObject<{
2068
2897
  g: number;
2069
2898
  b: number;
2070
2899
  alpha: number;
2900
+ hidden?: boolean | undefined;
2071
2901
  } | {
2072
2902
  type: "function";
2073
2903
  name: string;
2074
2904
  args: StyleValue;
2905
+ hidden?: boolean;
2906
+ } | {
2907
+ type: "image";
2908
+ value: {
2909
+ type: "asset";
2910
+ value: string;
2911
+ } | {
2912
+ type: "url";
2913
+ url: string;
2914
+ };
2915
+ hidden?: boolean | undefined;
2075
2916
  })[];
2076
2917
  hidden?: boolean | undefined;
2077
2918
  }>, z.ZodType<{
2078
2919
  type: "function";
2079
2920
  name: string;
2080
2921
  args: StyleValue;
2922
+ hidden?: boolean;
2081
2923
  }, z.ZodTypeDef, {
2082
2924
  type: "function";
2083
2925
  name: string;
2084
2926
  args: StyleValue;
2927
+ hidden?: boolean;
2085
2928
  }>, z.ZodObject<{
2086
2929
  type: z.ZodLiteral<"guaranteedInvalid">;
2930
+ hidden: z.ZodOptional<z.ZodBoolean>;
2087
2931
  }, "strip", z.ZodTypeAny, {
2088
2932
  type: "guaranteedInvalid";
2933
+ hidden?: boolean | undefined;
2089
2934
  }, {
2090
2935
  type: "guaranteedInvalid";
2936
+ hidden?: boolean | undefined;
2091
2937
  }>]>, "many">;
2938
+ hidden: z.ZodOptional<z.ZodBoolean>;
2092
2939
  }, "strip", z.ZodTypeAny, {
2093
2940
  type: "var";
2094
2941
  value: string;
@@ -2096,9 +2943,11 @@ declare const VarValue: z.ZodObject<{
2096
2943
  type: "unit";
2097
2944
  value: number;
2098
2945
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2946
+ hidden?: boolean | undefined;
2099
2947
  } | {
2100
2948
  type: "keyword";
2101
2949
  value: string;
2950
+ hidden?: boolean | undefined;
2102
2951
  } | {
2103
2952
  type: "unparsed";
2104
2953
  value: string;
@@ -2106,16 +2955,19 @@ declare const VarValue: z.ZodObject<{
2106
2955
  } | {
2107
2956
  type: "fontFamily";
2108
2957
  value: string[];
2958
+ hidden?: boolean | undefined;
2109
2959
  } | {
2110
2960
  type: "rgb";
2111
2961
  r: number;
2112
2962
  g: number;
2113
2963
  b: number;
2114
2964
  alpha: number;
2965
+ hidden?: boolean | undefined;
2115
2966
  } | {
2116
2967
  type: "function";
2117
2968
  name: string;
2118
2969
  args: StyleValue;
2970
+ hidden?: boolean;
2119
2971
  } | {
2120
2972
  type: "image";
2121
2973
  value: {
@@ -2132,9 +2984,11 @@ declare const VarValue: z.ZodObject<{
2132
2984
  type: "unit";
2133
2985
  value: number;
2134
2986
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
2987
+ hidden?: boolean | undefined;
2135
2988
  } | {
2136
2989
  type: "keyword";
2137
2990
  value: string;
2991
+ hidden?: boolean | undefined;
2138
2992
  } | {
2139
2993
  type: "unparsed";
2140
2994
  value: string;
@@ -2145,10 +2999,22 @@ declare const VarValue: z.ZodObject<{
2145
2999
  g: number;
2146
3000
  b: number;
2147
3001
  alpha: number;
3002
+ hidden?: boolean | undefined;
2148
3003
  } | {
2149
3004
  type: "function";
2150
3005
  name: string;
2151
3006
  args: StyleValue;
3007
+ hidden?: boolean;
3008
+ } | {
3009
+ type: "image";
3010
+ value: {
3011
+ type: "asset";
3012
+ value: string;
3013
+ } | {
3014
+ type: "url";
3015
+ url: string;
3016
+ };
3017
+ hidden?: boolean | undefined;
2152
3018
  })[];
2153
3019
  hidden?: boolean | undefined;
2154
3020
  } | {
@@ -2157,17 +3023,27 @@ declare const VarValue: z.ZodObject<{
2157
3023
  type: "unit";
2158
3024
  value: number;
2159
3025
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3026
+ hidden?: boolean | undefined;
2160
3027
  } | {
2161
3028
  type: "keyword";
2162
3029
  value: string;
3030
+ hidden?: boolean | undefined;
2163
3031
  } | {
2164
3032
  type: "unparsed";
2165
3033
  value: string;
2166
3034
  hidden?: boolean | undefined;
3035
+ } | {
3036
+ type: "rgb";
3037
+ r: number;
3038
+ g: number;
3039
+ b: number;
3040
+ alpha: number;
3041
+ hidden?: boolean | undefined;
2167
3042
  } | {
2168
3043
  type: "function";
2169
3044
  name: string;
2170
3045
  args: StyleValue;
3046
+ hidden?: boolean;
2171
3047
  } | {
2172
3048
  type: "image";
2173
3049
  value: {
@@ -2184,9 +3060,11 @@ declare const VarValue: z.ZodObject<{
2184
3060
  type: "unit";
2185
3061
  value: number;
2186
3062
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3063
+ hidden?: boolean | undefined;
2187
3064
  } | {
2188
3065
  type: "keyword";
2189
3066
  value: string;
3067
+ hidden?: boolean | undefined;
2190
3068
  } | {
2191
3069
  type: "unparsed";
2192
3070
  value: string;
@@ -2197,19 +3075,35 @@ declare const VarValue: z.ZodObject<{
2197
3075
  g: number;
2198
3076
  b: number;
2199
3077
  alpha: number;
3078
+ hidden?: boolean | undefined;
2200
3079
  } | {
2201
3080
  type: "function";
2202
3081
  name: string;
2203
3082
  args: StyleValue;
3083
+ hidden?: boolean;
3084
+ } | {
3085
+ type: "image";
3086
+ value: {
3087
+ type: "asset";
3088
+ value: string;
3089
+ } | {
3090
+ type: "url";
3091
+ url: string;
3092
+ };
3093
+ hidden?: boolean | undefined;
2204
3094
  })[];
2205
3095
  hidden?: boolean | undefined;
2206
3096
  } | {
2207
3097
  type: "invalid";
2208
3098
  value: string;
3099
+ hidden?: boolean | undefined;
2209
3100
  })[];
3101
+ hidden?: boolean | undefined;
2210
3102
  } | {
2211
3103
  type: "guaranteedInvalid";
3104
+ hidden?: boolean | undefined;
2212
3105
  })[];
3106
+ hidden?: boolean | undefined;
2213
3107
  }, {
2214
3108
  type: "var";
2215
3109
  value: string;
@@ -2217,9 +3111,11 @@ declare const VarValue: z.ZodObject<{
2217
3111
  type: "unit";
2218
3112
  value: number;
2219
3113
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3114
+ hidden?: boolean | undefined;
2220
3115
  } | {
2221
3116
  type: "keyword";
2222
3117
  value: string;
3118
+ hidden?: boolean | undefined;
2223
3119
  } | {
2224
3120
  type: "unparsed";
2225
3121
  value: string;
@@ -2227,16 +3123,19 @@ declare const VarValue: z.ZodObject<{
2227
3123
  } | {
2228
3124
  type: "fontFamily";
2229
3125
  value: string[];
3126
+ hidden?: boolean | undefined;
2230
3127
  } | {
2231
3128
  type: "rgb";
2232
3129
  r: number;
2233
3130
  g: number;
2234
3131
  b: number;
2235
3132
  alpha: number;
3133
+ hidden?: boolean | undefined;
2236
3134
  } | {
2237
3135
  type: "function";
2238
3136
  name: string;
2239
3137
  args: StyleValue;
3138
+ hidden?: boolean;
2240
3139
  } | {
2241
3140
  type: "image";
2242
3141
  value: {
@@ -2253,9 +3152,11 @@ declare const VarValue: z.ZodObject<{
2253
3152
  type: "unit";
2254
3153
  value: number;
2255
3154
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3155
+ hidden?: boolean | undefined;
2256
3156
  } | {
2257
3157
  type: "keyword";
2258
3158
  value: string;
3159
+ hidden?: boolean | undefined;
2259
3160
  } | {
2260
3161
  type: "unparsed";
2261
3162
  value: string;
@@ -2266,10 +3167,22 @@ declare const VarValue: z.ZodObject<{
2266
3167
  g: number;
2267
3168
  b: number;
2268
3169
  alpha: number;
3170
+ hidden?: boolean | undefined;
2269
3171
  } | {
2270
3172
  type: "function";
2271
3173
  name: string;
2272
3174
  args: StyleValue;
3175
+ hidden?: boolean;
3176
+ } | {
3177
+ type: "image";
3178
+ value: {
3179
+ type: "asset";
3180
+ value: string;
3181
+ } | {
3182
+ type: "url";
3183
+ url: string;
3184
+ };
3185
+ hidden?: boolean | undefined;
2273
3186
  })[];
2274
3187
  hidden?: boolean | undefined;
2275
3188
  } | {
@@ -2278,17 +3191,27 @@ declare const VarValue: z.ZodObject<{
2278
3191
  type: "unit";
2279
3192
  value: number;
2280
3193
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3194
+ hidden?: boolean | undefined;
2281
3195
  } | {
2282
3196
  type: "keyword";
2283
3197
  value: string;
3198
+ hidden?: boolean | undefined;
2284
3199
  } | {
2285
3200
  type: "unparsed";
2286
3201
  value: string;
2287
3202
  hidden?: boolean | undefined;
3203
+ } | {
3204
+ type: "rgb";
3205
+ r: number;
3206
+ g: number;
3207
+ b: number;
3208
+ alpha: number;
3209
+ hidden?: boolean | undefined;
2288
3210
  } | {
2289
3211
  type: "function";
2290
3212
  name: string;
2291
3213
  args: StyleValue;
3214
+ hidden?: boolean;
2292
3215
  } | {
2293
3216
  type: "image";
2294
3217
  value: {
@@ -2305,9 +3228,11 @@ declare const VarValue: z.ZodObject<{
2305
3228
  type: "unit";
2306
3229
  value: number;
2307
3230
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3231
+ hidden?: boolean | undefined;
2308
3232
  } | {
2309
3233
  type: "keyword";
2310
3234
  value: string;
3235
+ hidden?: boolean | undefined;
2311
3236
  } | {
2312
3237
  type: "unparsed";
2313
3238
  value: string;
@@ -2318,19 +3243,35 @@ declare const VarValue: z.ZodObject<{
2318
3243
  g: number;
2319
3244
  b: number;
2320
3245
  alpha: number;
3246
+ hidden?: boolean | undefined;
2321
3247
  } | {
2322
3248
  type: "function";
2323
3249
  name: string;
2324
3250
  args: StyleValue;
3251
+ hidden?: boolean;
3252
+ } | {
3253
+ type: "image";
3254
+ value: {
3255
+ type: "asset";
3256
+ value: string;
3257
+ } | {
3258
+ type: "url";
3259
+ url: string;
3260
+ };
3261
+ hidden?: boolean | undefined;
2325
3262
  })[];
2326
3263
  hidden?: boolean | undefined;
2327
3264
  } | {
2328
3265
  type: "invalid";
2329
3266
  value: string;
3267
+ hidden?: boolean | undefined;
2330
3268
  })[];
3269
+ hidden?: boolean | undefined;
2331
3270
  } | {
2332
3271
  type: "guaranteedInvalid";
3272
+ hidden?: boolean | undefined;
2333
3273
  })[];
3274
+ hidden?: boolean | undefined;
2334
3275
  }>;
2335
3276
  export type VarValue = z.infer<typeof VarValue>;
2336
3277
  export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
@@ -2381,23 +3322,29 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2381
3322
  type: z.ZodLiteral<"unit">;
2382
3323
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
2383
3324
  value: z.ZodNumber;
3325
+ hidden: z.ZodOptional<z.ZodBoolean>;
2384
3326
  }, "strip", z.ZodTypeAny, {
2385
3327
  type: "unit";
2386
3328
  value: number;
2387
3329
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3330
+ hidden?: boolean | undefined;
2388
3331
  }, {
2389
3332
  type: "unit";
2390
3333
  value: number;
2391
3334
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3335
+ hidden?: boolean | undefined;
2392
3336
  }>, z.ZodObject<{
2393
3337
  type: z.ZodLiteral<"keyword">;
2394
3338
  value: z.ZodString;
3339
+ hidden: z.ZodOptional<z.ZodBoolean>;
2395
3340
  }, "strip", z.ZodTypeAny, {
2396
3341
  type: "keyword";
2397
3342
  value: string;
3343
+ hidden?: boolean | undefined;
2398
3344
  }, {
2399
3345
  type: "keyword";
2400
3346
  value: string;
3347
+ hidden?: boolean | undefined;
2401
3348
  }>, z.ZodObject<{
2402
3349
  type: z.ZodLiteral<"unparsed">;
2403
3350
  value: z.ZodString;
@@ -2458,23 +3405,29 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2458
3405
  type: z.ZodLiteral<"unit">;
2459
3406
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
2460
3407
  value: z.ZodNumber;
3408
+ hidden: z.ZodOptional<z.ZodBoolean>;
2461
3409
  }, "strip", z.ZodTypeAny, {
2462
3410
  type: "unit";
2463
3411
  value: number;
2464
3412
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3413
+ hidden?: boolean | undefined;
2465
3414
  }, {
2466
3415
  type: "unit";
2467
3416
  value: number;
2468
3417
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3418
+ hidden?: boolean | undefined;
2469
3419
  }>, z.ZodObject<{
2470
3420
  type: z.ZodLiteral<"keyword">;
2471
3421
  value: z.ZodString;
3422
+ hidden: z.ZodOptional<z.ZodBoolean>;
2472
3423
  }, "strip", z.ZodTypeAny, {
2473
3424
  type: "keyword";
2474
3425
  value: string;
3426
+ hidden?: boolean | undefined;
2475
3427
  }, {
2476
3428
  type: "keyword";
2477
3429
  value: string;
3430
+ hidden?: boolean | undefined;
2478
3431
  }>, z.ZodObject<{
2479
3432
  type: z.ZodLiteral<"unparsed">;
2480
3433
  value: z.ZodString;
@@ -2487,32 +3440,79 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2487
3440
  type: "unparsed";
2488
3441
  value: string;
2489
3442
  hidden?: boolean | undefined;
3443
+ }>, z.ZodObject<{
3444
+ type: z.ZodLiteral<"image">;
3445
+ value: z.ZodUnion<[z.ZodObject<{
3446
+ type: z.ZodLiteral<"asset">;
3447
+ value: z.ZodString;
3448
+ }, "strip", z.ZodTypeAny, {
3449
+ type: "asset";
3450
+ value: string;
3451
+ }, {
3452
+ type: "asset";
3453
+ value: string;
3454
+ }>, z.ZodObject<{
3455
+ type: z.ZodLiteral<"url">;
3456
+ url: z.ZodString;
3457
+ }, "strip", z.ZodTypeAny, {
3458
+ type: "url";
3459
+ url: string;
3460
+ }, {
3461
+ type: "url";
3462
+ url: string;
3463
+ }>]>;
3464
+ hidden: z.ZodOptional<z.ZodBoolean>;
3465
+ }, "strip", z.ZodTypeAny, {
3466
+ type: "image";
3467
+ value: {
3468
+ type: "asset";
3469
+ value: string;
3470
+ } | {
3471
+ type: "url";
3472
+ url: string;
3473
+ };
3474
+ hidden?: boolean | undefined;
3475
+ }, {
3476
+ type: "image";
3477
+ value: {
3478
+ type: "asset";
3479
+ value: string;
3480
+ } | {
3481
+ type: "url";
3482
+ url: string;
3483
+ };
3484
+ hidden?: boolean | undefined;
2490
3485
  }>, z.ZodObject<{
2491
3486
  type: z.ZodLiteral<"rgb">;
2492
3487
  r: z.ZodNumber;
2493
3488
  g: z.ZodNumber;
2494
3489
  b: z.ZodNumber;
2495
3490
  alpha: z.ZodNumber;
3491
+ hidden: z.ZodOptional<z.ZodBoolean>;
2496
3492
  }, "strip", z.ZodTypeAny, {
2497
3493
  type: "rgb";
2498
3494
  r: number;
2499
3495
  g: number;
2500
3496
  b: number;
2501
3497
  alpha: number;
3498
+ hidden?: boolean | undefined;
2502
3499
  }, {
2503
3500
  type: "rgb";
2504
3501
  r: number;
2505
3502
  g: number;
2506
3503
  b: number;
2507
3504
  alpha: number;
3505
+ hidden?: boolean | undefined;
2508
3506
  }>, z.ZodType<{
2509
3507
  type: "function";
2510
3508
  name: string;
2511
3509
  args: StyleValue;
3510
+ hidden?: boolean;
2512
3511
  }, z.ZodTypeDef, {
2513
3512
  type: "function";
2514
3513
  name: string;
2515
3514
  args: StyleValue;
3515
+ hidden?: boolean;
2516
3516
  }>]>, "many">;
2517
3517
  hidden: z.ZodOptional<z.ZodBoolean>;
2518
3518
  }, "strip", z.ZodTypeAny, {
@@ -2521,9 +3521,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2521
3521
  type: "unit";
2522
3522
  value: number;
2523
3523
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3524
+ hidden?: boolean | undefined;
2524
3525
  } | {
2525
3526
  type: "keyword";
2526
3527
  value: string;
3528
+ hidden?: boolean | undefined;
2527
3529
  } | {
2528
3530
  type: "unparsed";
2529
3531
  value: string;
@@ -2534,10 +3536,22 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2534
3536
  g: number;
2535
3537
  b: number;
2536
3538
  alpha: number;
3539
+ hidden?: boolean | undefined;
2537
3540
  } | {
2538
3541
  type: "function";
2539
3542
  name: string;
2540
3543
  args: StyleValue;
3544
+ hidden?: boolean;
3545
+ } | {
3546
+ type: "image";
3547
+ value: {
3548
+ type: "asset";
3549
+ value: string;
3550
+ } | {
3551
+ type: "url";
3552
+ url: string;
3553
+ };
3554
+ hidden?: boolean | undefined;
2541
3555
  })[];
2542
3556
  hidden?: boolean | undefined;
2543
3557
  }, {
@@ -2546,9 +3560,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2546
3560
  type: "unit";
2547
3561
  value: number;
2548
3562
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3563
+ hidden?: boolean | undefined;
2549
3564
  } | {
2550
3565
  type: "keyword";
2551
3566
  value: string;
3567
+ hidden?: boolean | undefined;
2552
3568
  } | {
2553
3569
  type: "unparsed";
2554
3570
  value: string;
@@ -2559,47 +3575,96 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2559
3575
  g: number;
2560
3576
  b: number;
2561
3577
  alpha: number;
3578
+ hidden?: boolean | undefined;
2562
3579
  } | {
2563
3580
  type: "function";
2564
3581
  name: string;
2565
3582
  args: StyleValue;
3583
+ hidden?: boolean;
3584
+ } | {
3585
+ type: "image";
3586
+ value: {
3587
+ type: "asset";
3588
+ value: string;
3589
+ } | {
3590
+ type: "url";
3591
+ url: string;
3592
+ };
3593
+ hidden?: boolean | undefined;
2566
3594
  })[];
2567
3595
  hidden?: boolean | undefined;
3596
+ }>, z.ZodObject<{
3597
+ type: z.ZodLiteral<"rgb">;
3598
+ r: z.ZodNumber;
3599
+ g: z.ZodNumber;
3600
+ b: z.ZodNumber;
3601
+ alpha: z.ZodNumber;
3602
+ hidden: z.ZodOptional<z.ZodBoolean>;
3603
+ }, "strip", z.ZodTypeAny, {
3604
+ type: "rgb";
3605
+ r: number;
3606
+ g: number;
3607
+ b: number;
3608
+ alpha: number;
3609
+ hidden?: boolean | undefined;
3610
+ }, {
3611
+ type: "rgb";
3612
+ r: number;
3613
+ g: number;
3614
+ b: number;
3615
+ alpha: number;
3616
+ hidden?: boolean | undefined;
2568
3617
  }>, z.ZodObject<{
2569
3618
  type: z.ZodLiteral<"invalid">;
2570
3619
  value: z.ZodString;
3620
+ hidden: z.ZodOptional<z.ZodBoolean>;
2571
3621
  }, "strip", z.ZodTypeAny, {
2572
3622
  type: "invalid";
2573
3623
  value: string;
3624
+ hidden?: boolean | undefined;
2574
3625
  }, {
2575
3626
  type: "invalid";
2576
3627
  value: string;
3628
+ hidden?: boolean | undefined;
2577
3629
  }>, z.ZodType<{
2578
3630
  type: "function";
2579
3631
  name: string;
2580
3632
  args: StyleValue;
3633
+ hidden?: boolean;
2581
3634
  }, z.ZodTypeDef, {
2582
3635
  type: "function";
2583
3636
  name: string;
2584
3637
  args: StyleValue;
3638
+ hidden?: boolean;
2585
3639
  }>]>, "many">;
3640
+ hidden: z.ZodOptional<z.ZodBoolean>;
2586
3641
  }, "strip", z.ZodTypeAny, {
2587
3642
  type: "layers";
2588
3643
  value: ({
2589
3644
  type: "unit";
2590
3645
  value: number;
2591
3646
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3647
+ hidden?: boolean | undefined;
2592
3648
  } | {
2593
3649
  type: "keyword";
2594
3650
  value: string;
3651
+ hidden?: boolean | undefined;
2595
3652
  } | {
2596
3653
  type: "unparsed";
2597
3654
  value: string;
2598
3655
  hidden?: boolean | undefined;
3656
+ } | {
3657
+ type: "rgb";
3658
+ r: number;
3659
+ g: number;
3660
+ b: number;
3661
+ alpha: number;
3662
+ hidden?: boolean | undefined;
2599
3663
  } | {
2600
3664
  type: "function";
2601
3665
  name: string;
2602
3666
  args: StyleValue;
3667
+ hidden?: boolean;
2603
3668
  } | {
2604
3669
  type: "image";
2605
3670
  value: {
@@ -2616,9 +3681,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2616
3681
  type: "unit";
2617
3682
  value: number;
2618
3683
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3684
+ hidden?: boolean | undefined;
2619
3685
  } | {
2620
3686
  type: "keyword";
2621
3687
  value: string;
3688
+ hidden?: boolean | undefined;
2622
3689
  } | {
2623
3690
  type: "unparsed";
2624
3691
  value: string;
@@ -2629,33 +3696,57 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2629
3696
  g: number;
2630
3697
  b: number;
2631
3698
  alpha: number;
3699
+ hidden?: boolean | undefined;
2632
3700
  } | {
2633
3701
  type: "function";
2634
3702
  name: string;
2635
3703
  args: StyleValue;
3704
+ hidden?: boolean;
3705
+ } | {
3706
+ type: "image";
3707
+ value: {
3708
+ type: "asset";
3709
+ value: string;
3710
+ } | {
3711
+ type: "url";
3712
+ url: string;
3713
+ };
3714
+ hidden?: boolean | undefined;
2636
3715
  })[];
2637
3716
  hidden?: boolean | undefined;
2638
3717
  } | {
2639
3718
  type: "invalid";
2640
3719
  value: string;
3720
+ hidden?: boolean | undefined;
2641
3721
  })[];
3722
+ hidden?: boolean | undefined;
2642
3723
  }, {
2643
3724
  type: "layers";
2644
3725
  value: ({
2645
3726
  type: "unit";
2646
3727
  value: number;
2647
3728
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3729
+ hidden?: boolean | undefined;
2648
3730
  } | {
2649
3731
  type: "keyword";
2650
3732
  value: string;
3733
+ hidden?: boolean | undefined;
2651
3734
  } | {
2652
3735
  type: "unparsed";
2653
3736
  value: string;
2654
3737
  hidden?: boolean | undefined;
3738
+ } | {
3739
+ type: "rgb";
3740
+ r: number;
3741
+ g: number;
3742
+ b: number;
3743
+ alpha: number;
3744
+ hidden?: boolean | undefined;
2655
3745
  } | {
2656
3746
  type: "function";
2657
3747
  name: string;
2658
3748
  args: StyleValue;
3749
+ hidden?: boolean;
2659
3750
  } | {
2660
3751
  type: "image";
2661
3752
  value: {
@@ -2672,9 +3763,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2672
3763
  type: "unit";
2673
3764
  value: number;
2674
3765
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3766
+ hidden?: boolean | undefined;
2675
3767
  } | {
2676
3768
  type: "keyword";
2677
3769
  value: string;
3770
+ hidden?: boolean | undefined;
2678
3771
  } | {
2679
3772
  type: "unparsed";
2680
3773
  value: string;
@@ -2685,64 +3778,90 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2685
3778
  g: number;
2686
3779
  b: number;
2687
3780
  alpha: number;
3781
+ hidden?: boolean | undefined;
2688
3782
  } | {
2689
3783
  type: "function";
2690
3784
  name: string;
2691
3785
  args: StyleValue;
3786
+ hidden?: boolean;
3787
+ } | {
3788
+ type: "image";
3789
+ value: {
3790
+ type: "asset";
3791
+ value: string;
3792
+ } | {
3793
+ type: "url";
3794
+ url: string;
3795
+ };
3796
+ hidden?: boolean | undefined;
2692
3797
  })[];
2693
3798
  hidden?: boolean | undefined;
2694
3799
  } | {
2695
3800
  type: "invalid";
2696
3801
  value: string;
3802
+ hidden?: boolean | undefined;
2697
3803
  })[];
3804
+ hidden?: boolean | undefined;
2698
3805
  }>, z.ZodObject<{
2699
3806
  type: z.ZodLiteral<"unit">;
2700
3807
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
2701
3808
  value: z.ZodNumber;
3809
+ hidden: z.ZodOptional<z.ZodBoolean>;
2702
3810
  }, "strip", z.ZodTypeAny, {
2703
3811
  type: "unit";
2704
3812
  value: number;
2705
3813
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3814
+ hidden?: boolean | undefined;
2706
3815
  }, {
2707
3816
  type: "unit";
2708
3817
  value: number;
2709
3818
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3819
+ hidden?: boolean | undefined;
2710
3820
  }>, z.ZodObject<{
2711
3821
  type: z.ZodLiteral<"keyword">;
2712
3822
  value: z.ZodString;
3823
+ hidden: z.ZodOptional<z.ZodBoolean>;
2713
3824
  }, "strip", z.ZodTypeAny, {
2714
3825
  type: "keyword";
2715
3826
  value: string;
3827
+ hidden?: boolean | undefined;
2716
3828
  }, {
2717
3829
  type: "keyword";
2718
3830
  value: string;
3831
+ hidden?: boolean | undefined;
2719
3832
  }>, z.ZodObject<{
2720
3833
  type: z.ZodLiteral<"fontFamily">;
2721
3834
  value: z.ZodArray<z.ZodString, "many">;
3835
+ hidden: z.ZodOptional<z.ZodBoolean>;
2722
3836
  }, "strip", z.ZodTypeAny, {
2723
3837
  type: "fontFamily";
2724
3838
  value: string[];
3839
+ hidden?: boolean | undefined;
2725
3840
  }, {
2726
3841
  type: "fontFamily";
2727
3842
  value: string[];
3843
+ hidden?: boolean | undefined;
2728
3844
  }>, z.ZodObject<{
2729
3845
  type: z.ZodLiteral<"rgb">;
2730
3846
  r: z.ZodNumber;
2731
3847
  g: z.ZodNumber;
2732
3848
  b: z.ZodNumber;
2733
3849
  alpha: z.ZodNumber;
3850
+ hidden: z.ZodOptional<z.ZodBoolean>;
2734
3851
  }, "strip", z.ZodTypeAny, {
2735
3852
  type: "rgb";
2736
3853
  r: number;
2737
3854
  g: number;
2738
3855
  b: number;
2739
3856
  alpha: number;
3857
+ hidden?: boolean | undefined;
2740
3858
  }, {
2741
3859
  type: "rgb";
2742
3860
  r: number;
2743
3861
  g: number;
2744
3862
  b: number;
2745
3863
  alpha: number;
3864
+ hidden?: boolean | undefined;
2746
3865
  }>, z.ZodObject<{
2747
3866
  type: z.ZodLiteral<"unparsed">;
2748
3867
  value: z.ZodString;
@@ -2761,23 +3880,29 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2761
3880
  type: z.ZodLiteral<"unit">;
2762
3881
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
2763
3882
  value: z.ZodNumber;
3883
+ hidden: z.ZodOptional<z.ZodBoolean>;
2764
3884
  }, "strip", z.ZodTypeAny, {
2765
3885
  type: "unit";
2766
3886
  value: number;
2767
3887
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3888
+ hidden?: boolean | undefined;
2768
3889
  }, {
2769
3890
  type: "unit";
2770
3891
  value: number;
2771
3892
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3893
+ hidden?: boolean | undefined;
2772
3894
  }>, z.ZodObject<{
2773
3895
  type: z.ZodLiteral<"keyword">;
2774
3896
  value: z.ZodString;
3897
+ hidden: z.ZodOptional<z.ZodBoolean>;
2775
3898
  }, "strip", z.ZodTypeAny, {
2776
3899
  type: "keyword";
2777
3900
  value: string;
3901
+ hidden?: boolean | undefined;
2778
3902
  }, {
2779
3903
  type: "keyword";
2780
3904
  value: string;
3905
+ hidden?: boolean | undefined;
2781
3906
  }>, z.ZodObject<{
2782
3907
  type: z.ZodLiteral<"unparsed">;
2783
3908
  value: z.ZodString;
@@ -2790,32 +3915,79 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2790
3915
  type: "unparsed";
2791
3916
  value: string;
2792
3917
  hidden?: boolean | undefined;
3918
+ }>, z.ZodObject<{
3919
+ type: z.ZodLiteral<"image">;
3920
+ value: z.ZodUnion<[z.ZodObject<{
3921
+ type: z.ZodLiteral<"asset">;
3922
+ value: z.ZodString;
3923
+ }, "strip", z.ZodTypeAny, {
3924
+ type: "asset";
3925
+ value: string;
3926
+ }, {
3927
+ type: "asset";
3928
+ value: string;
3929
+ }>, z.ZodObject<{
3930
+ type: z.ZodLiteral<"url">;
3931
+ url: z.ZodString;
3932
+ }, "strip", z.ZodTypeAny, {
3933
+ type: "url";
3934
+ url: string;
3935
+ }, {
3936
+ type: "url";
3937
+ url: string;
3938
+ }>]>;
3939
+ hidden: z.ZodOptional<z.ZodBoolean>;
3940
+ }, "strip", z.ZodTypeAny, {
3941
+ type: "image";
3942
+ value: {
3943
+ type: "asset";
3944
+ value: string;
3945
+ } | {
3946
+ type: "url";
3947
+ url: string;
3948
+ };
3949
+ hidden?: boolean | undefined;
3950
+ }, {
3951
+ type: "image";
3952
+ value: {
3953
+ type: "asset";
3954
+ value: string;
3955
+ } | {
3956
+ type: "url";
3957
+ url: string;
3958
+ };
3959
+ hidden?: boolean | undefined;
2793
3960
  }>, z.ZodObject<{
2794
3961
  type: z.ZodLiteral<"rgb">;
2795
3962
  r: z.ZodNumber;
2796
3963
  g: z.ZodNumber;
2797
3964
  b: z.ZodNumber;
2798
3965
  alpha: z.ZodNumber;
3966
+ hidden: z.ZodOptional<z.ZodBoolean>;
2799
3967
  }, "strip", z.ZodTypeAny, {
2800
3968
  type: "rgb";
2801
3969
  r: number;
2802
3970
  g: number;
2803
3971
  b: number;
2804
3972
  alpha: number;
3973
+ hidden?: boolean | undefined;
2805
3974
  }, {
2806
3975
  type: "rgb";
2807
3976
  r: number;
2808
3977
  g: number;
2809
3978
  b: number;
2810
3979
  alpha: number;
3980
+ hidden?: boolean | undefined;
2811
3981
  }>, z.ZodType<{
2812
3982
  type: "function";
2813
3983
  name: string;
2814
3984
  args: StyleValue;
3985
+ hidden?: boolean;
2815
3986
  }, z.ZodTypeDef, {
2816
3987
  type: "function";
2817
3988
  name: string;
2818
3989
  args: StyleValue;
3990
+ hidden?: boolean;
2819
3991
  }>]>, "many">;
2820
3992
  hidden: z.ZodOptional<z.ZodBoolean>;
2821
3993
  }, "strip", z.ZodTypeAny, {
@@ -2824,9 +3996,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2824
3996
  type: "unit";
2825
3997
  value: number;
2826
3998
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
3999
+ hidden?: boolean | undefined;
2827
4000
  } | {
2828
4001
  type: "keyword";
2829
4002
  value: string;
4003
+ hidden?: boolean | undefined;
2830
4004
  } | {
2831
4005
  type: "unparsed";
2832
4006
  value: string;
@@ -2837,10 +4011,22 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2837
4011
  g: number;
2838
4012
  b: number;
2839
4013
  alpha: number;
4014
+ hidden?: boolean | undefined;
2840
4015
  } | {
2841
4016
  type: "function";
2842
4017
  name: string;
2843
4018
  args: StyleValue;
4019
+ hidden?: boolean;
4020
+ } | {
4021
+ type: "image";
4022
+ value: {
4023
+ type: "asset";
4024
+ value: string;
4025
+ } | {
4026
+ type: "url";
4027
+ url: string;
4028
+ };
4029
+ hidden?: boolean | undefined;
2844
4030
  })[];
2845
4031
  hidden?: boolean | undefined;
2846
4032
  }, {
@@ -2849,9 +4035,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2849
4035
  type: "unit";
2850
4036
  value: number;
2851
4037
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4038
+ hidden?: boolean | undefined;
2852
4039
  } | {
2853
4040
  type: "keyword";
2854
4041
  value: string;
4042
+ hidden?: boolean | undefined;
2855
4043
  } | {
2856
4044
  type: "unparsed";
2857
4045
  value: string;
@@ -2862,44 +4050,67 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2862
4050
  g: number;
2863
4051
  b: number;
2864
4052
  alpha: number;
4053
+ hidden?: boolean | undefined;
2865
4054
  } | {
2866
4055
  type: "function";
2867
4056
  name: string;
2868
4057
  args: StyleValue;
4058
+ hidden?: boolean;
4059
+ } | {
4060
+ type: "image";
4061
+ value: {
4062
+ type: "asset";
4063
+ value: string;
4064
+ } | {
4065
+ type: "url";
4066
+ url: string;
4067
+ };
4068
+ hidden?: boolean | undefined;
2869
4069
  })[];
2870
4070
  hidden?: boolean | undefined;
2871
4071
  }>, z.ZodType<{
2872
4072
  type: "function";
2873
4073
  name: string;
2874
4074
  args: StyleValue;
4075
+ hidden?: boolean;
2875
4076
  }, z.ZodTypeDef, {
2876
4077
  type: "function";
2877
4078
  name: string;
2878
4079
  args: StyleValue;
4080
+ hidden?: boolean;
2879
4081
  }>, z.ZodObject<{
2880
4082
  type: z.ZodLiteral<"guaranteedInvalid">;
4083
+ hidden: z.ZodOptional<z.ZodBoolean>;
2881
4084
  }, "strip", z.ZodTypeAny, {
2882
4085
  type: "guaranteedInvalid";
4086
+ hidden?: boolean | undefined;
2883
4087
  }, {
2884
4088
  type: "guaranteedInvalid";
4089
+ hidden?: boolean | undefined;
2885
4090
  }>]>, z.ZodObject<{
2886
4091
  type: z.ZodLiteral<"invalid">;
2887
4092
  value: z.ZodString;
4093
+ hidden: z.ZodOptional<z.ZodBoolean>;
2888
4094
  }, "strip", z.ZodTypeAny, {
2889
4095
  type: "invalid";
2890
4096
  value: string;
4097
+ hidden?: boolean | undefined;
2891
4098
  }, {
2892
4099
  type: "invalid";
2893
4100
  value: string;
4101
+ hidden?: boolean | undefined;
2894
4102
  }>, z.ZodObject<{
2895
4103
  type: z.ZodLiteral<"unset">;
2896
4104
  value: z.ZodLiteral<"">;
4105
+ hidden: z.ZodOptional<z.ZodBoolean>;
2897
4106
  }, "strip", z.ZodTypeAny, {
2898
4107
  type: "unset";
2899
4108
  value: "";
4109
+ hidden?: boolean | undefined;
2900
4110
  }, {
2901
4111
  type: "unset";
2902
4112
  value: "";
4113
+ hidden?: boolean | undefined;
2903
4114
  }>, z.ZodObject<{
2904
4115
  type: z.ZodLiteral<"var">;
2905
4116
  value: z.ZodString;
@@ -2951,23 +4162,29 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2951
4162
  type: z.ZodLiteral<"unit">;
2952
4163
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
2953
4164
  value: z.ZodNumber;
4165
+ hidden: z.ZodOptional<z.ZodBoolean>;
2954
4166
  }, "strip", z.ZodTypeAny, {
2955
4167
  type: "unit";
2956
4168
  value: number;
2957
4169
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4170
+ hidden?: boolean | undefined;
2958
4171
  }, {
2959
4172
  type: "unit";
2960
4173
  value: number;
2961
4174
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4175
+ hidden?: boolean | undefined;
2962
4176
  }>, z.ZodObject<{
2963
4177
  type: z.ZodLiteral<"keyword">;
2964
4178
  value: z.ZodString;
4179
+ hidden: z.ZodOptional<z.ZodBoolean>;
2965
4180
  }, "strip", z.ZodTypeAny, {
2966
4181
  type: "keyword";
2967
4182
  value: string;
4183
+ hidden?: boolean | undefined;
2968
4184
  }, {
2969
4185
  type: "keyword";
2970
4186
  value: string;
4187
+ hidden?: boolean | undefined;
2971
4188
  }>, z.ZodObject<{
2972
4189
  type: z.ZodLiteral<"unparsed">;
2973
4190
  value: z.ZodString;
@@ -3028,23 +4245,29 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3028
4245
  type: z.ZodLiteral<"unit">;
3029
4246
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
3030
4247
  value: z.ZodNumber;
4248
+ hidden: z.ZodOptional<z.ZodBoolean>;
3031
4249
  }, "strip", z.ZodTypeAny, {
3032
4250
  type: "unit";
3033
4251
  value: number;
3034
4252
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4253
+ hidden?: boolean | undefined;
3035
4254
  }, {
3036
4255
  type: "unit";
3037
4256
  value: number;
3038
4257
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4258
+ hidden?: boolean | undefined;
3039
4259
  }>, z.ZodObject<{
3040
4260
  type: z.ZodLiteral<"keyword">;
3041
4261
  value: z.ZodString;
4262
+ hidden: z.ZodOptional<z.ZodBoolean>;
3042
4263
  }, "strip", z.ZodTypeAny, {
3043
4264
  type: "keyword";
3044
4265
  value: string;
4266
+ hidden?: boolean | undefined;
3045
4267
  }, {
3046
4268
  type: "keyword";
3047
4269
  value: string;
4270
+ hidden?: boolean | undefined;
3048
4271
  }>, z.ZodObject<{
3049
4272
  type: z.ZodLiteral<"unparsed">;
3050
4273
  value: z.ZodString;
@@ -3057,32 +4280,79 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3057
4280
  type: "unparsed";
3058
4281
  value: string;
3059
4282
  hidden?: boolean | undefined;
4283
+ }>, z.ZodObject<{
4284
+ type: z.ZodLiteral<"image">;
4285
+ value: z.ZodUnion<[z.ZodObject<{
4286
+ type: z.ZodLiteral<"asset">;
4287
+ value: z.ZodString;
4288
+ }, "strip", z.ZodTypeAny, {
4289
+ type: "asset";
4290
+ value: string;
4291
+ }, {
4292
+ type: "asset";
4293
+ value: string;
4294
+ }>, z.ZodObject<{
4295
+ type: z.ZodLiteral<"url">;
4296
+ url: z.ZodString;
4297
+ }, "strip", z.ZodTypeAny, {
4298
+ type: "url";
4299
+ url: string;
4300
+ }, {
4301
+ type: "url";
4302
+ url: string;
4303
+ }>]>;
4304
+ hidden: z.ZodOptional<z.ZodBoolean>;
4305
+ }, "strip", z.ZodTypeAny, {
4306
+ type: "image";
4307
+ value: {
4308
+ type: "asset";
4309
+ value: string;
4310
+ } | {
4311
+ type: "url";
4312
+ url: string;
4313
+ };
4314
+ hidden?: boolean | undefined;
4315
+ }, {
4316
+ type: "image";
4317
+ value: {
4318
+ type: "asset";
4319
+ value: string;
4320
+ } | {
4321
+ type: "url";
4322
+ url: string;
4323
+ };
4324
+ hidden?: boolean | undefined;
3060
4325
  }>, z.ZodObject<{
3061
4326
  type: z.ZodLiteral<"rgb">;
3062
4327
  r: z.ZodNumber;
3063
4328
  g: z.ZodNumber;
3064
4329
  b: z.ZodNumber;
3065
4330
  alpha: z.ZodNumber;
4331
+ hidden: z.ZodOptional<z.ZodBoolean>;
3066
4332
  }, "strip", z.ZodTypeAny, {
3067
4333
  type: "rgb";
3068
4334
  r: number;
3069
4335
  g: number;
3070
4336
  b: number;
3071
4337
  alpha: number;
4338
+ hidden?: boolean | undefined;
3072
4339
  }, {
3073
4340
  type: "rgb";
3074
4341
  r: number;
3075
4342
  g: number;
3076
4343
  b: number;
3077
4344
  alpha: number;
4345
+ hidden?: boolean | undefined;
3078
4346
  }>, z.ZodType<{
3079
4347
  type: "function";
3080
4348
  name: string;
3081
4349
  args: StyleValue;
4350
+ hidden?: boolean;
3082
4351
  }, z.ZodTypeDef, {
3083
4352
  type: "function";
3084
4353
  name: string;
3085
4354
  args: StyleValue;
4355
+ hidden?: boolean;
3086
4356
  }>]>, "many">;
3087
4357
  hidden: z.ZodOptional<z.ZodBoolean>;
3088
4358
  }, "strip", z.ZodTypeAny, {
@@ -3091,9 +4361,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3091
4361
  type: "unit";
3092
4362
  value: number;
3093
4363
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4364
+ hidden?: boolean | undefined;
3094
4365
  } | {
3095
4366
  type: "keyword";
3096
4367
  value: string;
4368
+ hidden?: boolean | undefined;
3097
4369
  } | {
3098
4370
  type: "unparsed";
3099
4371
  value: string;
@@ -3104,10 +4376,22 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3104
4376
  g: number;
3105
4377
  b: number;
3106
4378
  alpha: number;
4379
+ hidden?: boolean | undefined;
3107
4380
  } | {
3108
4381
  type: "function";
3109
4382
  name: string;
3110
4383
  args: StyleValue;
4384
+ hidden?: boolean;
4385
+ } | {
4386
+ type: "image";
4387
+ value: {
4388
+ type: "asset";
4389
+ value: string;
4390
+ } | {
4391
+ type: "url";
4392
+ url: string;
4393
+ };
4394
+ hidden?: boolean | undefined;
3111
4395
  })[];
3112
4396
  hidden?: boolean | undefined;
3113
4397
  }, {
@@ -3116,9 +4400,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3116
4400
  type: "unit";
3117
4401
  value: number;
3118
4402
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4403
+ hidden?: boolean | undefined;
3119
4404
  } | {
3120
4405
  type: "keyword";
3121
4406
  value: string;
4407
+ hidden?: boolean | undefined;
3122
4408
  } | {
3123
4409
  type: "unparsed";
3124
4410
  value: string;
@@ -3129,47 +4415,96 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3129
4415
  g: number;
3130
4416
  b: number;
3131
4417
  alpha: number;
4418
+ hidden?: boolean | undefined;
3132
4419
  } | {
3133
4420
  type: "function";
3134
4421
  name: string;
3135
4422
  args: StyleValue;
4423
+ hidden?: boolean;
4424
+ } | {
4425
+ type: "image";
4426
+ value: {
4427
+ type: "asset";
4428
+ value: string;
4429
+ } | {
4430
+ type: "url";
4431
+ url: string;
4432
+ };
4433
+ hidden?: boolean | undefined;
3136
4434
  })[];
3137
4435
  hidden?: boolean | undefined;
4436
+ }>, z.ZodObject<{
4437
+ type: z.ZodLiteral<"rgb">;
4438
+ r: z.ZodNumber;
4439
+ g: z.ZodNumber;
4440
+ b: z.ZodNumber;
4441
+ alpha: z.ZodNumber;
4442
+ hidden: z.ZodOptional<z.ZodBoolean>;
4443
+ }, "strip", z.ZodTypeAny, {
4444
+ type: "rgb";
4445
+ r: number;
4446
+ g: number;
4447
+ b: number;
4448
+ alpha: number;
4449
+ hidden?: boolean | undefined;
4450
+ }, {
4451
+ type: "rgb";
4452
+ r: number;
4453
+ g: number;
4454
+ b: number;
4455
+ alpha: number;
4456
+ hidden?: boolean | undefined;
3138
4457
  }>, z.ZodObject<{
3139
4458
  type: z.ZodLiteral<"invalid">;
3140
4459
  value: z.ZodString;
4460
+ hidden: z.ZodOptional<z.ZodBoolean>;
3141
4461
  }, "strip", z.ZodTypeAny, {
3142
4462
  type: "invalid";
3143
4463
  value: string;
4464
+ hidden?: boolean | undefined;
3144
4465
  }, {
3145
4466
  type: "invalid";
3146
4467
  value: string;
4468
+ hidden?: boolean | undefined;
3147
4469
  }>, z.ZodType<{
3148
4470
  type: "function";
3149
4471
  name: string;
3150
4472
  args: StyleValue;
4473
+ hidden?: boolean;
3151
4474
  }, z.ZodTypeDef, {
3152
4475
  type: "function";
3153
4476
  name: string;
3154
4477
  args: StyleValue;
4478
+ hidden?: boolean;
3155
4479
  }>]>, "many">;
4480
+ hidden: z.ZodOptional<z.ZodBoolean>;
3156
4481
  }, "strip", z.ZodTypeAny, {
3157
4482
  type: "layers";
3158
4483
  value: ({
3159
4484
  type: "unit";
3160
4485
  value: number;
3161
4486
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4487
+ hidden?: boolean | undefined;
3162
4488
  } | {
3163
4489
  type: "keyword";
3164
4490
  value: string;
4491
+ hidden?: boolean | undefined;
3165
4492
  } | {
3166
4493
  type: "unparsed";
3167
4494
  value: string;
3168
4495
  hidden?: boolean | undefined;
4496
+ } | {
4497
+ type: "rgb";
4498
+ r: number;
4499
+ g: number;
4500
+ b: number;
4501
+ alpha: number;
4502
+ hidden?: boolean | undefined;
3169
4503
  } | {
3170
4504
  type: "function";
3171
4505
  name: string;
3172
4506
  args: StyleValue;
4507
+ hidden?: boolean;
3173
4508
  } | {
3174
4509
  type: "image";
3175
4510
  value: {
@@ -3186,9 +4521,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3186
4521
  type: "unit";
3187
4522
  value: number;
3188
4523
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4524
+ hidden?: boolean | undefined;
3189
4525
  } | {
3190
4526
  type: "keyword";
3191
4527
  value: string;
4528
+ hidden?: boolean | undefined;
3192
4529
  } | {
3193
4530
  type: "unparsed";
3194
4531
  value: string;
@@ -3199,33 +4536,57 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3199
4536
  g: number;
3200
4537
  b: number;
3201
4538
  alpha: number;
4539
+ hidden?: boolean | undefined;
3202
4540
  } | {
3203
4541
  type: "function";
3204
4542
  name: string;
3205
4543
  args: StyleValue;
4544
+ hidden?: boolean;
4545
+ } | {
4546
+ type: "image";
4547
+ value: {
4548
+ type: "asset";
4549
+ value: string;
4550
+ } | {
4551
+ type: "url";
4552
+ url: string;
4553
+ };
4554
+ hidden?: boolean | undefined;
3206
4555
  })[];
3207
4556
  hidden?: boolean | undefined;
3208
4557
  } | {
3209
4558
  type: "invalid";
3210
4559
  value: string;
4560
+ hidden?: boolean | undefined;
3211
4561
  })[];
4562
+ hidden?: boolean | undefined;
3212
4563
  }, {
3213
4564
  type: "layers";
3214
4565
  value: ({
3215
4566
  type: "unit";
3216
4567
  value: number;
3217
4568
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4569
+ hidden?: boolean | undefined;
3218
4570
  } | {
3219
4571
  type: "keyword";
3220
4572
  value: string;
4573
+ hidden?: boolean | undefined;
3221
4574
  } | {
3222
4575
  type: "unparsed";
3223
4576
  value: string;
3224
4577
  hidden?: boolean | undefined;
4578
+ } | {
4579
+ type: "rgb";
4580
+ r: number;
4581
+ g: number;
4582
+ b: number;
4583
+ alpha: number;
4584
+ hidden?: boolean | undefined;
3225
4585
  } | {
3226
4586
  type: "function";
3227
4587
  name: string;
3228
4588
  args: StyleValue;
4589
+ hidden?: boolean;
3229
4590
  } | {
3230
4591
  type: "image";
3231
4592
  value: {
@@ -3242,9 +4603,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3242
4603
  type: "unit";
3243
4604
  value: number;
3244
4605
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4606
+ hidden?: boolean | undefined;
3245
4607
  } | {
3246
4608
  type: "keyword";
3247
4609
  value: string;
4610
+ hidden?: boolean | undefined;
3248
4611
  } | {
3249
4612
  type: "unparsed";
3250
4613
  value: string;
@@ -3255,64 +4618,90 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3255
4618
  g: number;
3256
4619
  b: number;
3257
4620
  alpha: number;
4621
+ hidden?: boolean | undefined;
3258
4622
  } | {
3259
4623
  type: "function";
3260
4624
  name: string;
3261
4625
  args: StyleValue;
4626
+ hidden?: boolean;
4627
+ } | {
4628
+ type: "image";
4629
+ value: {
4630
+ type: "asset";
4631
+ value: string;
4632
+ } | {
4633
+ type: "url";
4634
+ url: string;
4635
+ };
4636
+ hidden?: boolean | undefined;
3262
4637
  })[];
3263
4638
  hidden?: boolean | undefined;
3264
4639
  } | {
3265
4640
  type: "invalid";
3266
4641
  value: string;
4642
+ hidden?: boolean | undefined;
3267
4643
  })[];
4644
+ hidden?: boolean | undefined;
3268
4645
  }>, z.ZodObject<{
3269
4646
  type: z.ZodLiteral<"unit">;
3270
4647
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
3271
4648
  value: z.ZodNumber;
4649
+ hidden: z.ZodOptional<z.ZodBoolean>;
3272
4650
  }, "strip", z.ZodTypeAny, {
3273
4651
  type: "unit";
3274
4652
  value: number;
3275
4653
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4654
+ hidden?: boolean | undefined;
3276
4655
  }, {
3277
4656
  type: "unit";
3278
4657
  value: number;
3279
4658
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4659
+ hidden?: boolean | undefined;
3280
4660
  }>, z.ZodObject<{
3281
4661
  type: z.ZodLiteral<"keyword">;
3282
4662
  value: z.ZodString;
4663
+ hidden: z.ZodOptional<z.ZodBoolean>;
3283
4664
  }, "strip", z.ZodTypeAny, {
3284
4665
  type: "keyword";
3285
4666
  value: string;
4667
+ hidden?: boolean | undefined;
3286
4668
  }, {
3287
4669
  type: "keyword";
3288
4670
  value: string;
4671
+ hidden?: boolean | undefined;
3289
4672
  }>, z.ZodObject<{
3290
4673
  type: z.ZodLiteral<"fontFamily">;
3291
4674
  value: z.ZodArray<z.ZodString, "many">;
4675
+ hidden: z.ZodOptional<z.ZodBoolean>;
3292
4676
  }, "strip", z.ZodTypeAny, {
3293
4677
  type: "fontFamily";
3294
4678
  value: string[];
4679
+ hidden?: boolean | undefined;
3295
4680
  }, {
3296
4681
  type: "fontFamily";
3297
4682
  value: string[];
4683
+ hidden?: boolean | undefined;
3298
4684
  }>, z.ZodObject<{
3299
4685
  type: z.ZodLiteral<"rgb">;
3300
4686
  r: z.ZodNumber;
3301
4687
  g: z.ZodNumber;
3302
4688
  b: z.ZodNumber;
3303
4689
  alpha: z.ZodNumber;
4690
+ hidden: z.ZodOptional<z.ZodBoolean>;
3304
4691
  }, "strip", z.ZodTypeAny, {
3305
4692
  type: "rgb";
3306
4693
  r: number;
3307
4694
  g: number;
3308
4695
  b: number;
3309
4696
  alpha: number;
4697
+ hidden?: boolean | undefined;
3310
4698
  }, {
3311
4699
  type: "rgb";
3312
4700
  r: number;
3313
4701
  g: number;
3314
4702
  b: number;
3315
4703
  alpha: number;
4704
+ hidden?: boolean | undefined;
3316
4705
  }>, z.ZodObject<{
3317
4706
  type: z.ZodLiteral<"unparsed">;
3318
4707
  value: z.ZodString;
@@ -3331,23 +4720,29 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3331
4720
  type: z.ZodLiteral<"unit">;
3332
4721
  unit: z.ZodType<"number" | GeneratedUnit, z.ZodTypeDef, "number" | GeneratedUnit>;
3333
4722
  value: z.ZodNumber;
4723
+ hidden: z.ZodOptional<z.ZodBoolean>;
3334
4724
  }, "strip", z.ZodTypeAny, {
3335
4725
  type: "unit";
3336
4726
  value: number;
3337
4727
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4728
+ hidden?: boolean | undefined;
3338
4729
  }, {
3339
4730
  type: "unit";
3340
4731
  value: number;
3341
4732
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4733
+ hidden?: boolean | undefined;
3342
4734
  }>, z.ZodObject<{
3343
4735
  type: z.ZodLiteral<"keyword">;
3344
4736
  value: z.ZodString;
4737
+ hidden: z.ZodOptional<z.ZodBoolean>;
3345
4738
  }, "strip", z.ZodTypeAny, {
3346
4739
  type: "keyword";
3347
4740
  value: string;
4741
+ hidden?: boolean | undefined;
3348
4742
  }, {
3349
4743
  type: "keyword";
3350
4744
  value: string;
4745
+ hidden?: boolean | undefined;
3351
4746
  }>, z.ZodObject<{
3352
4747
  type: z.ZodLiteral<"unparsed">;
3353
4748
  value: z.ZodString;
@@ -3360,32 +4755,79 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3360
4755
  type: "unparsed";
3361
4756
  value: string;
3362
4757
  hidden?: boolean | undefined;
4758
+ }>, z.ZodObject<{
4759
+ type: z.ZodLiteral<"image">;
4760
+ value: z.ZodUnion<[z.ZodObject<{
4761
+ type: z.ZodLiteral<"asset">;
4762
+ value: z.ZodString;
4763
+ }, "strip", z.ZodTypeAny, {
4764
+ type: "asset";
4765
+ value: string;
4766
+ }, {
4767
+ type: "asset";
4768
+ value: string;
4769
+ }>, z.ZodObject<{
4770
+ type: z.ZodLiteral<"url">;
4771
+ url: z.ZodString;
4772
+ }, "strip", z.ZodTypeAny, {
4773
+ type: "url";
4774
+ url: string;
4775
+ }, {
4776
+ type: "url";
4777
+ url: string;
4778
+ }>]>;
4779
+ hidden: z.ZodOptional<z.ZodBoolean>;
4780
+ }, "strip", z.ZodTypeAny, {
4781
+ type: "image";
4782
+ value: {
4783
+ type: "asset";
4784
+ value: string;
4785
+ } | {
4786
+ type: "url";
4787
+ url: string;
4788
+ };
4789
+ hidden?: boolean | undefined;
4790
+ }, {
4791
+ type: "image";
4792
+ value: {
4793
+ type: "asset";
4794
+ value: string;
4795
+ } | {
4796
+ type: "url";
4797
+ url: string;
4798
+ };
4799
+ hidden?: boolean | undefined;
3363
4800
  }>, z.ZodObject<{
3364
4801
  type: z.ZodLiteral<"rgb">;
3365
4802
  r: z.ZodNumber;
3366
4803
  g: z.ZodNumber;
3367
4804
  b: z.ZodNumber;
3368
4805
  alpha: z.ZodNumber;
4806
+ hidden: z.ZodOptional<z.ZodBoolean>;
3369
4807
  }, "strip", z.ZodTypeAny, {
3370
4808
  type: "rgb";
3371
4809
  r: number;
3372
4810
  g: number;
3373
4811
  b: number;
3374
4812
  alpha: number;
4813
+ hidden?: boolean | undefined;
3375
4814
  }, {
3376
4815
  type: "rgb";
3377
4816
  r: number;
3378
4817
  g: number;
3379
4818
  b: number;
3380
4819
  alpha: number;
4820
+ hidden?: boolean | undefined;
3381
4821
  }>, z.ZodType<{
3382
4822
  type: "function";
3383
4823
  name: string;
3384
4824
  args: StyleValue;
4825
+ hidden?: boolean;
3385
4826
  }, z.ZodTypeDef, {
3386
4827
  type: "function";
3387
4828
  name: string;
3388
4829
  args: StyleValue;
4830
+ hidden?: boolean;
3389
4831
  }>]>, "many">;
3390
4832
  hidden: z.ZodOptional<z.ZodBoolean>;
3391
4833
  }, "strip", z.ZodTypeAny, {
@@ -3394,9 +4836,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3394
4836
  type: "unit";
3395
4837
  value: number;
3396
4838
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4839
+ hidden?: boolean | undefined;
3397
4840
  } | {
3398
4841
  type: "keyword";
3399
4842
  value: string;
4843
+ hidden?: boolean | undefined;
3400
4844
  } | {
3401
4845
  type: "unparsed";
3402
4846
  value: string;
@@ -3407,10 +4851,22 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3407
4851
  g: number;
3408
4852
  b: number;
3409
4853
  alpha: number;
4854
+ hidden?: boolean | undefined;
3410
4855
  } | {
3411
4856
  type: "function";
3412
4857
  name: string;
3413
4858
  args: StyleValue;
4859
+ hidden?: boolean;
4860
+ } | {
4861
+ type: "image";
4862
+ value: {
4863
+ type: "asset";
4864
+ value: string;
4865
+ } | {
4866
+ type: "url";
4867
+ url: string;
4868
+ };
4869
+ hidden?: boolean | undefined;
3414
4870
  })[];
3415
4871
  hidden?: boolean | undefined;
3416
4872
  }, {
@@ -3419,9 +4875,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3419
4875
  type: "unit";
3420
4876
  value: number;
3421
4877
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4878
+ hidden?: boolean | undefined;
3422
4879
  } | {
3423
4880
  type: "keyword";
3424
4881
  value: string;
4882
+ hidden?: boolean | undefined;
3425
4883
  } | {
3426
4884
  type: "unparsed";
3427
4885
  value: string;
@@ -3432,27 +4890,45 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3432
4890
  g: number;
3433
4891
  b: number;
3434
4892
  alpha: number;
4893
+ hidden?: boolean | undefined;
3435
4894
  } | {
3436
4895
  type: "function";
3437
4896
  name: string;
3438
4897
  args: StyleValue;
4898
+ hidden?: boolean;
4899
+ } | {
4900
+ type: "image";
4901
+ value: {
4902
+ type: "asset";
4903
+ value: string;
4904
+ } | {
4905
+ type: "url";
4906
+ url: string;
4907
+ };
4908
+ hidden?: boolean | undefined;
3439
4909
  })[];
3440
4910
  hidden?: boolean | undefined;
3441
4911
  }>, z.ZodType<{
3442
4912
  type: "function";
3443
4913
  name: string;
3444
4914
  args: StyleValue;
4915
+ hidden?: boolean;
3445
4916
  }, z.ZodTypeDef, {
3446
4917
  type: "function";
3447
4918
  name: string;
3448
4919
  args: StyleValue;
4920
+ hidden?: boolean;
3449
4921
  }>, z.ZodObject<{
3450
4922
  type: z.ZodLiteral<"guaranteedInvalid">;
4923
+ hidden: z.ZodOptional<z.ZodBoolean>;
3451
4924
  }, "strip", z.ZodTypeAny, {
3452
4925
  type: "guaranteedInvalid";
4926
+ hidden?: boolean | undefined;
3453
4927
  }, {
3454
4928
  type: "guaranteedInvalid";
4929
+ hidden?: boolean | undefined;
3455
4930
  }>]>, "many">;
4931
+ hidden: z.ZodOptional<z.ZodBoolean>;
3456
4932
  }, "strip", z.ZodTypeAny, {
3457
4933
  type: "var";
3458
4934
  value: string;
@@ -3460,9 +4936,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3460
4936
  type: "unit";
3461
4937
  value: number;
3462
4938
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4939
+ hidden?: boolean | undefined;
3463
4940
  } | {
3464
4941
  type: "keyword";
3465
4942
  value: string;
4943
+ hidden?: boolean | undefined;
3466
4944
  } | {
3467
4945
  type: "unparsed";
3468
4946
  value: string;
@@ -3470,16 +4948,19 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3470
4948
  } | {
3471
4949
  type: "fontFamily";
3472
4950
  value: string[];
4951
+ hidden?: boolean | undefined;
3473
4952
  } | {
3474
4953
  type: "rgb";
3475
4954
  r: number;
3476
4955
  g: number;
3477
4956
  b: number;
3478
4957
  alpha: number;
4958
+ hidden?: boolean | undefined;
3479
4959
  } | {
3480
4960
  type: "function";
3481
4961
  name: string;
3482
4962
  args: StyleValue;
4963
+ hidden?: boolean;
3483
4964
  } | {
3484
4965
  type: "image";
3485
4966
  value: {
@@ -3496,9 +4977,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3496
4977
  type: "unit";
3497
4978
  value: number;
3498
4979
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
4980
+ hidden?: boolean | undefined;
3499
4981
  } | {
3500
4982
  type: "keyword";
3501
4983
  value: string;
4984
+ hidden?: boolean | undefined;
3502
4985
  } | {
3503
4986
  type: "unparsed";
3504
4987
  value: string;
@@ -3509,10 +4992,22 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3509
4992
  g: number;
3510
4993
  b: number;
3511
4994
  alpha: number;
4995
+ hidden?: boolean | undefined;
3512
4996
  } | {
3513
4997
  type: "function";
3514
4998
  name: string;
3515
4999
  args: StyleValue;
5000
+ hidden?: boolean;
5001
+ } | {
5002
+ type: "image";
5003
+ value: {
5004
+ type: "asset";
5005
+ value: string;
5006
+ } | {
5007
+ type: "url";
5008
+ url: string;
5009
+ };
5010
+ hidden?: boolean | undefined;
3516
5011
  })[];
3517
5012
  hidden?: boolean | undefined;
3518
5013
  } | {
@@ -3521,17 +5016,27 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3521
5016
  type: "unit";
3522
5017
  value: number;
3523
5018
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
5019
+ hidden?: boolean | undefined;
3524
5020
  } | {
3525
5021
  type: "keyword";
3526
5022
  value: string;
5023
+ hidden?: boolean | undefined;
3527
5024
  } | {
3528
5025
  type: "unparsed";
3529
5026
  value: string;
3530
5027
  hidden?: boolean | undefined;
5028
+ } | {
5029
+ type: "rgb";
5030
+ r: number;
5031
+ g: number;
5032
+ b: number;
5033
+ alpha: number;
5034
+ hidden?: boolean | undefined;
3531
5035
  } | {
3532
5036
  type: "function";
3533
5037
  name: string;
3534
5038
  args: StyleValue;
5039
+ hidden?: boolean;
3535
5040
  } | {
3536
5041
  type: "image";
3537
5042
  value: {
@@ -3548,9 +5053,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3548
5053
  type: "unit";
3549
5054
  value: number;
3550
5055
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
5056
+ hidden?: boolean | undefined;
3551
5057
  } | {
3552
5058
  type: "keyword";
3553
5059
  value: string;
5060
+ hidden?: boolean | undefined;
3554
5061
  } | {
3555
5062
  type: "unparsed";
3556
5063
  value: string;
@@ -3561,19 +5068,35 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3561
5068
  g: number;
3562
5069
  b: number;
3563
5070
  alpha: number;
5071
+ hidden?: boolean | undefined;
3564
5072
  } | {
3565
5073
  type: "function";
3566
5074
  name: string;
3567
5075
  args: StyleValue;
5076
+ hidden?: boolean;
5077
+ } | {
5078
+ type: "image";
5079
+ value: {
5080
+ type: "asset";
5081
+ value: string;
5082
+ } | {
5083
+ type: "url";
5084
+ url: string;
5085
+ };
5086
+ hidden?: boolean | undefined;
3568
5087
  })[];
3569
5088
  hidden?: boolean | undefined;
3570
5089
  } | {
3571
5090
  type: "invalid";
3572
5091
  value: string;
5092
+ hidden?: boolean | undefined;
3573
5093
  })[];
5094
+ hidden?: boolean | undefined;
3574
5095
  } | {
3575
5096
  type: "guaranteedInvalid";
5097
+ hidden?: boolean | undefined;
3576
5098
  })[];
5099
+ hidden?: boolean | undefined;
3577
5100
  }, {
3578
5101
  type: "var";
3579
5102
  value: string;
@@ -3581,9 +5104,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3581
5104
  type: "unit";
3582
5105
  value: number;
3583
5106
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
5107
+ hidden?: boolean | undefined;
3584
5108
  } | {
3585
5109
  type: "keyword";
3586
5110
  value: string;
5111
+ hidden?: boolean | undefined;
3587
5112
  } | {
3588
5113
  type: "unparsed";
3589
5114
  value: string;
@@ -3591,16 +5116,19 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3591
5116
  } | {
3592
5117
  type: "fontFamily";
3593
5118
  value: string[];
5119
+ hidden?: boolean | undefined;
3594
5120
  } | {
3595
5121
  type: "rgb";
3596
5122
  r: number;
3597
5123
  g: number;
3598
5124
  b: number;
3599
5125
  alpha: number;
5126
+ hidden?: boolean | undefined;
3600
5127
  } | {
3601
5128
  type: "function";
3602
5129
  name: string;
3603
5130
  args: StyleValue;
5131
+ hidden?: boolean;
3604
5132
  } | {
3605
5133
  type: "image";
3606
5134
  value: {
@@ -3617,9 +5145,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3617
5145
  type: "unit";
3618
5146
  value: number;
3619
5147
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
5148
+ hidden?: boolean | undefined;
3620
5149
  } | {
3621
5150
  type: "keyword";
3622
5151
  value: string;
5152
+ hidden?: boolean | undefined;
3623
5153
  } | {
3624
5154
  type: "unparsed";
3625
5155
  value: string;
@@ -3630,10 +5160,22 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3630
5160
  g: number;
3631
5161
  b: number;
3632
5162
  alpha: number;
5163
+ hidden?: boolean | undefined;
3633
5164
  } | {
3634
5165
  type: "function";
3635
5166
  name: string;
3636
5167
  args: StyleValue;
5168
+ hidden?: boolean;
5169
+ } | {
5170
+ type: "image";
5171
+ value: {
5172
+ type: "asset";
5173
+ value: string;
5174
+ } | {
5175
+ type: "url";
5176
+ url: string;
5177
+ };
5178
+ hidden?: boolean | undefined;
3637
5179
  })[];
3638
5180
  hidden?: boolean | undefined;
3639
5181
  } | {
@@ -3642,17 +5184,27 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3642
5184
  type: "unit";
3643
5185
  value: number;
3644
5186
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
5187
+ hidden?: boolean | undefined;
3645
5188
  } | {
3646
5189
  type: "keyword";
3647
5190
  value: string;
5191
+ hidden?: boolean | undefined;
3648
5192
  } | {
3649
5193
  type: "unparsed";
3650
5194
  value: string;
3651
5195
  hidden?: boolean | undefined;
5196
+ } | {
5197
+ type: "rgb";
5198
+ r: number;
5199
+ g: number;
5200
+ b: number;
5201
+ alpha: number;
5202
+ hidden?: boolean | undefined;
3652
5203
  } | {
3653
5204
  type: "function";
3654
5205
  name: string;
3655
5206
  args: StyleValue;
5207
+ hidden?: boolean;
3656
5208
  } | {
3657
5209
  type: "image";
3658
5210
  value: {
@@ -3669,9 +5221,11 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3669
5221
  type: "unit";
3670
5222
  value: number;
3671
5223
  unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
5224
+ hidden?: boolean | undefined;
3672
5225
  } | {
3673
5226
  type: "keyword";
3674
5227
  value: string;
5228
+ hidden?: boolean | undefined;
3675
5229
  } | {
3676
5230
  type: "unparsed";
3677
5231
  value: string;
@@ -3682,19 +5236,35 @@ export declare const StyleValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3682
5236
  g: number;
3683
5237
  b: number;
3684
5238
  alpha: number;
5239
+ hidden?: boolean | undefined;
3685
5240
  } | {
3686
5241
  type: "function";
3687
5242
  name: string;
3688
5243
  args: StyleValue;
5244
+ hidden?: boolean;
5245
+ } | {
5246
+ type: "image";
5247
+ value: {
5248
+ type: "asset";
5249
+ value: string;
5250
+ } | {
5251
+ type: "url";
5252
+ url: string;
5253
+ };
5254
+ hidden?: boolean | undefined;
3689
5255
  })[];
3690
5256
  hidden?: boolean | undefined;
3691
5257
  } | {
3692
5258
  type: "invalid";
3693
5259
  value: string;
5260
+ hidden?: boolean | undefined;
3694
5261
  })[];
5262
+ hidden?: boolean | undefined;
3695
5263
  } | {
3696
5264
  type: "guaranteedInvalid";
5265
+ hidden?: boolean | undefined;
3697
5266
  })[];
5267
+ hidden?: boolean | undefined;
3698
5268
  }>]>;
3699
5269
  export type StyleValue = z.infer<typeof StyleValue>;
3700
5270
  export type Style = {