-
Notifications
You must be signed in to change notification settings - Fork 74
/
index.d.ts
2680 lines (2334 loc) · 114 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export as namespace CSS;
export interface StandardProperties<TLength = string | number> {
alignContent?: AlignContentProperty;
alignItems?: AlignItemsProperty;
alignSelf?: AlignSelfProperty;
animation?: AnimationProperty;
animationDelay?: AllString;
animationDirection?: AnimationDirectionProperty;
animationDuration?: AllString;
animationFillMode?: AnimationFillModeProperty;
animationIterationCount?: AnimationIterationCountProperty;
animationName?: AnimationNameProperty;
animationPlayState?: AnimationPlayStateProperty;
animationTimingFunction?: AnimationTimingFunctionProperty;
appearance?: AppearanceProperty;
azimuth?: AzimuthProperty;
backdropFilter?: BackdropFilterProperty;
backfaceVisibility?: BackfaceVisibilityProperty;
background?: AllString;
backgroundAttachment?: BackgroundAttachmentProperty;
backgroundBlendMode?: BackgroundBlendModeProperty;
backgroundClip?: BackgroundClipProperty;
backgroundColor?: BackgroundColorProperty;
backgroundImage?: BackgroundImageProperty;
backgroundOrigin?: BackgroundOriginProperty;
backgroundPosition?: AllString;
backgroundPositionX?: AllString;
backgroundPositionY?: AllString;
backgroundRepeat?: BackgroundRepeatProperty;
backgroundSize?: BackgroundSizeProperty<TLength>;
blockSize?: AllString;
border?: BorderProperty<TLength>;
borderBlockEnd?: AllString;
borderBlockEndColor?: AllString;
borderBlockEndStyle?: AllString;
borderBlockEndWidth?: AllString;
borderBlockStart?: AllString;
borderBlockStartColor?: AllString;
borderBlockStartStyle?: AllString;
borderBlockStartWidth?: AllString;
borderBottom?: BorderBottomProperty<TLength>;
borderBottomColor?: BorderBottomColorProperty;
borderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength>;
borderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength>;
borderBottomStyle?: BorderBottomStyleProperty;
borderBottomWidth?: BorderBottomWidthProperty<TLength>;
borderCollapse?: BorderCollapseProperty;
borderColor?: BorderColorProperty;
borderImage?: AllString;
borderImageOutset?: BorderImageOutsetProperty<TLength>;
borderImageRepeat?: BorderImageRepeatProperty;
borderImageSlice?: AllString;
borderImageSource?: BorderImageSourceProperty;
borderImageWidth?: BorderImageWidthProperty<TLength>;
borderInlineEnd?: AllString;
borderInlineEndColor?: AllString;
borderInlineEndStyle?: AllString;
borderInlineEndWidth?: AllString;
borderInlineStart?: AllString;
borderInlineStartColor?: AllString;
borderInlineStartStyle?: AllString;
borderInlineStartWidth?: AllString;
borderLeft?: BorderLeftProperty<TLength>;
borderLeftColor?: BorderLeftColorProperty;
borderLeftStyle?: BorderLeftStyleProperty;
borderLeftWidth?: BorderLeftWidthProperty<TLength>;
borderRadius?: BorderRadiusProperty<TLength>;
borderRight?: BorderRightProperty<TLength>;
borderRightColor?: BorderRightColorProperty;
borderRightStyle?: BorderRightStyleProperty;
borderRightWidth?: BorderRightWidthProperty<TLength>;
borderSpacing?: AllString;
borderStyle?: BorderStyleProperty;
borderTop?: BorderTopProperty<TLength>;
borderTopColor?: BorderTopColorProperty;
borderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength>;
borderTopRightRadius?: BorderTopRightRadiusProperty<TLength>;
borderTopStyle?: BorderTopStyleProperty;
borderTopWidth?: BorderTopWidthProperty<TLength>;
borderWidth?: BorderWidthProperty<TLength>;
bottom?: BottomProperty<TLength>;
boxAlign?: BoxAlignProperty;
boxDecorationBreak?: BoxDecorationBreakProperty;
boxDirection?: BoxDirectionProperty;
boxFlex?: AllNumber;
boxFlexGroup?: AllNumber;
boxLines?: BoxLinesProperty;
boxOrdinalGroup?: AllNumber;
boxOrient?: BoxOrientProperty;
boxPack?: BoxPackProperty;
boxShadow?: BoxShadowProperty;
boxSizing?: BoxSizingProperty;
breakAfter?: BreakAfterProperty;
breakBefore?: BreakBeforeProperty;
breakInside?: BreakInsideProperty;
captionSide?: CaptionSideProperty;
caretColor?: CaretColorProperty;
clear?: ClearProperty;
clip?: ClipProperty;
clipPath?: ClipPathProperty;
color?: ColorProperty;
columnCount?: ColumnCountProperty;
columnFill?: ColumnFillProperty;
columnGap?: ColumnGapProperty<TLength>;
columnRule?: AllString;
columnRuleColor?: ColumnRuleColorProperty;
columnRuleStyle?: AllString;
columnRuleWidth?: AllString;
columnSpan?: ColumnSpanProperty;
columnWidth?: ColumnWidthProperty<TLength>;
columns?: AllString;
contain?: ContainProperty;
content?: ContentProperty;
counterIncrement?: CounterIncrementProperty;
counterReset?: CounterResetProperty;
cursor?: CursorProperty;
direction?: DirectionProperty;
display?: DisplayProperty;
displayInside?: DisplayInsideProperty;
displayList?: DisplayListProperty;
displayOutside?: DisplayOutsideProperty;
emptyCells?: EmptyCellsProperty;
filter?: FilterProperty;
flex?: FlexProperty;
flexBasis?: FlexBasisProperty;
flexDirection?: FlexDirectionProperty;
flexFlow?: AllString;
flexGrow?: AllNumber;
flexShrink?: AllNumber;
flexWrap?: FlexWrapProperty;
float?: FloatProperty;
font?: FontProperty;
fontFamily?: FontFamilyProperty;
fontFeatureSettings?: FontFeatureSettingsProperty;
fontKerning?: FontKerningProperty;
fontLanguageOverride?: FontLanguageOverrideProperty;
fontVariationSettings?: FontVariationSettingsProperty;
fontSize?: FontSizeProperty<TLength>;
fontSizeAdjust?: FontSizeAdjustProperty;
fontStretch?: FontStretchProperty;
fontStyle?: FontStyleProperty;
fontSynthesis?: FontSynthesisProperty;
fontVariant?: FontVariantProperty;
fontVariantAlternates?: FontVariantAlternatesProperty;
fontVariantCaps?: FontVariantCapsProperty;
fontVariantEastAsian?: FontVariantEastAsianProperty;
fontVariantLigatures?: FontVariantLigaturesProperty;
fontVariantNumeric?: FontVariantNumericProperty;
fontVariantPosition?: FontVariantPositionProperty;
fontWeight?: FontWeightProperty;
grid?: AllString;
gridArea?: GridAreaProperty;
gridAutoColumns?: AllString;
gridAutoFlow?: GridAutoFlowProperty;
gridAutoRows?: AllString;
gridColumn?: GridColumnProperty;
gridColumnEnd?: GridColumnEndProperty;
gridColumnGap?: GridColumnGapProperty<TLength>;
gridColumnStart?: GridColumnStartProperty;
gridGap?: AllString;
gridRow?: GridRowProperty;
gridRowEnd?: GridRowEndProperty;
gridRowGap?: GridRowGapProperty<TLength>;
gridRowStart?: GridRowStartProperty;
gridTemplate?: GridTemplateProperty;
gridTemplateAreas?: GridTemplateAreasProperty;
gridTemplateColumns?: GridTemplateColumnsProperty;
gridTemplateRows?: GridTemplateRowsProperty;
hangingPunctuation?: HangingPunctuationProperty;
height?: AllString;
hyphens?: HyphensProperty;
imageOrientation?: ImageOrientationProperty;
imageRendering?: ImageRenderingProperty;
imageResolution?: AllString;
imeMode?: ImeModeProperty;
initialLetter?: InitialLetterProperty;
initialLetterAlign?: InitialLetterAlignProperty;
inlineSize?: AllString;
isolation?: IsolationProperty;
justifyContent?: JustifyContentProperty;
left?: LeftProperty<TLength>;
letterSpacing?: LetterSpacingProperty<TLength>;
lineBreak?: LineBreakProperty;
lineHeight?: LineHeightProperty<TLength>;
lineHeightStep?: LineHeightStepProperty<TLength>;
listStyle?: AllString;
listStyleImage?: ListStyleImageProperty;
listStylePosition?: ListStylePositionProperty;
listStyleType?: ListStyleTypeProperty;
margin?: MarginProperty<TLength>;
marginBlockEnd?: AllString;
marginBlockStart?: AllString;
marginBottom?: MarginBottomProperty<TLength>;
marginInlineEnd?: AllString;
marginInlineStart?: AllString;
marginLeft?: MarginLeftProperty<TLength>;
marginRight?: MarginRightProperty<TLength>;
marginTop?: MarginTopProperty<TLength>;
mask?: MaskProperty<TLength>;
maskBorder?: AllString;
maskBorderMode?: MaskBorderModeProperty;
maskBorderOutset?: MaskBorderOutsetProperty<TLength>;
maskBorderRepeat?: MaskBorderRepeatProperty;
maskBorderSlice?: AllString;
maskBorderSource?: MaskBorderSourceProperty;
maskBorderWidth?: MaskBorderWidthProperty<TLength>;
maskClip?: MaskClipProperty;
maskComposite?: MaskCompositeProperty;
maskImage?: MaskImageProperty;
maskMode?: MaskModeProperty;
maskOrigin?: MaskOriginProperty;
maskPosition?: AllString;
maskRepeat?: MaskRepeatProperty;
maskSize?: MaskSizeProperty<TLength>;
maskType?: MaskTypeProperty;
maxBlockSize?: AllString;
maxHeight?: MaxHeightProperty<TLength>;
maxInlineSize?: AllString;
maxWidth?: MaxWidthProperty<TLength>;
minBlockSize?: AllString;
minHeight?: MinHeightProperty<TLength>;
minInlineSize?: AllString;
minWidth?: MinWidthProperty<TLength>;
mixBlendMode?: MixBlendModeProperty;
objectFit?: ObjectFitProperty;
objectPosition?: AllString;
offset?: AllString;
offsetAnchor?: OffsetAnchorProperty;
offsetBlockEnd?: AllString;
offsetBlockStart?: AllString;
offsetInlineEnd?: AllString;
offsetInlineStart?: AllString;
offsetDistance?: OffsetDistanceProperty<TLength>;
offsetPath?: OffsetPathProperty;
offsetPosition?: OffsetPositionProperty;
offsetRotate?: OffsetRotateProperty;
opacity?: AllNumber;
order?: AllNumber;
orphans?: AllNumber;
outline?: AllString;
outlineColor?: OutlineColorProperty;
outlineOffset?: OutlineOffsetProperty<TLength>;
outlineStyle?: OutlineStyleProperty;
outlineWidth?: OutlineWidthProperty<TLength>;
overflow?: OverflowProperty;
overflowClipBox?: OverflowClipBoxProperty;
overflowWrap?: OverflowWrapProperty;
overflowX?: OverflowXProperty;
overflowY?: OverflowYProperty;
padding?: PaddingProperty<TLength>;
paddingBlockEnd?: AllString;
paddingBlockStart?: AllString;
paddingBottom?: PaddingBottomProperty<TLength>;
paddingInlineEnd?: AllString;
paddingInlineStart?: AllString;
paddingLeft?: PaddingLeftProperty<TLength>;
paddingRight?: PaddingRightProperty<TLength>;
paddingTop?: PaddingTopProperty<TLength>;
pageBreakAfter?: PageBreakAfterProperty;
pageBreakBefore?: PageBreakBeforeProperty;
pageBreakInside?: PageBreakInsideProperty;
perspective?: PerspectiveProperty<TLength>;
perspectiveOrigin?: AllString;
pointerEvents?: PointerEventsProperty;
position?: PositionProperty;
quotes?: QuotesProperty;
resize?: ResizeProperty;
right?: RightProperty<TLength>;
rubyAlign?: RubyAlignProperty;
rubyMerge?: RubyMergeProperty;
rubyPosition?: RubyPositionProperty;
scrollBehavior?: ScrollBehaviorProperty;
scrollSnapCoordinate?: ScrollSnapCoordinateProperty;
scrollSnapDestination?: AllString;
scrollSnapPointsX?: ScrollSnapPointsXProperty;
scrollSnapPointsY?: ScrollSnapPointsYProperty;
scrollSnapType?: ScrollSnapTypeProperty;
scrollSnapTypeX?: ScrollSnapTypeXProperty;
scrollSnapTypeY?: ScrollSnapTypeYProperty;
shapeImageThreshold?: AllNumber;
shapeMargin?: ShapeMarginProperty<TLength>;
shapeOutside?: ShapeOutsideProperty;
tabSize?: TabSizeProperty<TLength>;
tableLayout?: TableLayoutProperty;
textAlign?: TextAlignProperty;
textAlignLast?: TextAlignLastProperty;
textCombineUpright?: TextCombineUprightProperty;
textDecoration?: AllString;
textDecorationColor?: TextDecorationColorProperty;
textDecorationLine?: TextDecorationLineProperty;
textDecorationSkip?: TextDecorationSkipProperty;
textDecorationSkipInk?: TextDecorationSkipInkProperty;
textDecorationStyle?: TextDecorationStyleProperty;
textEmphasis?: AllString;
textEmphasisColor?: TextEmphasisColorProperty;
textEmphasisPosition?: AllString;
textEmphasisStyle?: TextEmphasisStyleProperty;
textIndent?: AllString;
textJustify?: TextJustifyProperty;
textOrientation?: TextOrientationProperty;
textOverflow?: TextOverflowProperty;
textRendering?: TextRenderingProperty;
textShadow?: TextShadowProperty;
textSizeAdjust?: TextSizeAdjustProperty;
textTransform?: TextTransformProperty;
textUnderlinePosition?: TextUnderlinePositionProperty;
top?: TopProperty<TLength>;
touchAction?: TouchActionProperty;
transform?: TransformProperty;
transformBox?: TransformBoxProperty;
transformOrigin?: AllString;
transformStyle?: TransformStyleProperty;
transition?: TransitionProperty;
transitionDelay?: AllString;
transitionDuration?: AllString;
transitionProperty?: TransitionPropertyProperty;
transitionTimingFunction?: TransitionTimingFunctionProperty;
unicodeBidi?: UnicodeBidiProperty;
userSelect?: UserSelectProperty;
verticalAlign?: VerticalAlignProperty<TLength>;
visibility?: VisibilityProperty;
whiteSpace?: WhiteSpaceProperty;
widows?: AllNumber;
width?: AllString;
willChange?: WillChangeProperty;
wordBreak?: WordBreakProperty;
wordSpacing?: WordSpacingProperty<TLength>;
wordWrap?: WordWrapProperty;
writingMode?: WritingModeProperty;
zIndex?: ZIndexProperty;
}
export interface StandardPropertiesHyphen<TLength = string | number> {
"align-content"?: AlignContentProperty;
"align-items"?: AlignItemsProperty;
"align-self"?: AlignSelfProperty;
animation?: AnimationProperty;
"animation-delay"?: AllString;
"animation-direction"?: AnimationDirectionProperty;
"animation-duration"?: AllString;
"animation-fill-mode"?: AnimationFillModeProperty;
"animation-iteration-count"?: AnimationIterationCountProperty;
"animation-name"?: AnimationNameProperty;
"animation-play-state"?: AnimationPlayStateProperty;
"animation-timing-function"?: AnimationTimingFunctionProperty;
appearance?: AppearanceProperty;
azimuth?: AzimuthProperty;
"backdrop-filter"?: BackdropFilterProperty;
"backface-visibility"?: BackfaceVisibilityProperty;
background?: AllString;
"background-attachment"?: BackgroundAttachmentProperty;
"background-blend-mode"?: BackgroundBlendModeProperty;
"background-clip"?: BackgroundClipProperty;
"background-color"?: BackgroundColorProperty;
"background-image"?: BackgroundImageProperty;
"background-origin"?: BackgroundOriginProperty;
"background-position"?: AllString;
"background-position-x"?: AllString;
"background-position-y"?: AllString;
"background-repeat"?: BackgroundRepeatProperty;
"background-size"?: BackgroundSizeProperty<TLength>;
"block-size"?: AllString;
border?: BorderProperty<TLength>;
"border-block-end"?: AllString;
"border-block-end-color"?: AllString;
"border-block-end-style"?: AllString;
"border-block-end-width"?: AllString;
"border-block-start"?: AllString;
"border-block-start-color"?: AllString;
"border-block-start-style"?: AllString;
"border-block-start-width"?: AllString;
"border-bottom"?: BorderBottomProperty<TLength>;
"border-bottom-color"?: BorderBottomColorProperty;
"border-bottom-left-radius"?: BorderBottomLeftRadiusProperty<TLength>;
"border-bottom-right-radius"?: BorderBottomRightRadiusProperty<TLength>;
"border-bottom-style"?: BorderBottomStyleProperty;
"border-bottom-width"?: BorderBottomWidthProperty<TLength>;
"border-collapse"?: BorderCollapseProperty;
"border-color"?: BorderColorProperty;
"border-image"?: AllString;
"border-image-outset"?: BorderImageOutsetProperty<TLength>;
"border-image-repeat"?: BorderImageRepeatProperty;
"border-image-slice"?: AllString;
"border-image-source"?: BorderImageSourceProperty;
"border-image-width"?: BorderImageWidthProperty<TLength>;
"border-inline-end"?: AllString;
"border-inline-end-color"?: AllString;
"border-inline-end-style"?: AllString;
"border-inline-end-width"?: AllString;
"border-inline-start"?: AllString;
"border-inline-start-color"?: AllString;
"border-inline-start-style"?: AllString;
"border-inline-start-width"?: AllString;
"border-left"?: BorderLeftProperty<TLength>;
"border-left-color"?: BorderLeftColorProperty;
"border-left-style"?: BorderLeftStyleProperty;
"border-left-width"?: BorderLeftWidthProperty<TLength>;
"border-radius"?: BorderRadiusProperty<TLength>;
"border-right"?: BorderRightProperty<TLength>;
"border-right-color"?: BorderRightColorProperty;
"border-right-style"?: BorderRightStyleProperty;
"border-right-width"?: BorderRightWidthProperty<TLength>;
"border-spacing"?: AllString;
"border-style"?: BorderStyleProperty;
"border-top"?: BorderTopProperty<TLength>;
"border-top-color"?: BorderTopColorProperty;
"border-top-left-radius"?: BorderTopLeftRadiusProperty<TLength>;
"border-top-right-radius"?: BorderTopRightRadiusProperty<TLength>;
"border-top-style"?: BorderTopStyleProperty;
"border-top-width"?: BorderTopWidthProperty<TLength>;
"border-width"?: BorderWidthProperty<TLength>;
bottom?: BottomProperty<TLength>;
"box-align"?: BoxAlignProperty;
"box-decoration-break"?: BoxDecorationBreakProperty;
"box-direction"?: BoxDirectionProperty;
"box-flex"?: AllNumber;
"box-flex-group"?: AllNumber;
"box-lines"?: BoxLinesProperty;
"box-ordinal-group"?: AllNumber;
"box-orient"?: BoxOrientProperty;
"box-pack"?: BoxPackProperty;
"box-shadow"?: BoxShadowProperty;
"box-sizing"?: BoxSizingProperty;
"break-after"?: BreakAfterProperty;
"break-before"?: BreakBeforeProperty;
"break-inside"?: BreakInsideProperty;
"caption-side"?: CaptionSideProperty;
"caret-color"?: CaretColorProperty;
clear?: ClearProperty;
clip?: ClipProperty;
"clip-path"?: ClipPathProperty;
color?: ColorProperty;
"column-count"?: ColumnCountProperty;
"column-fill"?: ColumnFillProperty;
"column-gap"?: ColumnGapProperty<TLength>;
"column-rule"?: AllString;
"column-rule-color"?: ColumnRuleColorProperty;
"column-rule-style"?: AllString;
"column-rule-width"?: AllString;
"column-span"?: ColumnSpanProperty;
"column-width"?: ColumnWidthProperty<TLength>;
columns?: AllString;
contain?: ContainProperty;
content?: ContentProperty;
"counter-increment"?: CounterIncrementProperty;
"counter-reset"?: CounterResetProperty;
cursor?: CursorProperty;
direction?: DirectionProperty;
display?: DisplayProperty;
"display-inside"?: DisplayInsideProperty;
"display-list"?: DisplayListProperty;
"display-outside"?: DisplayOutsideProperty;
"empty-cells"?: EmptyCellsProperty;
filter?: FilterProperty;
flex?: FlexProperty;
"flex-basis"?: FlexBasisProperty;
"flex-direction"?: FlexDirectionProperty;
"flex-flow"?: AllString;
"flex-grow"?: AllNumber;
"flex-shrink"?: AllNumber;
"flex-wrap"?: FlexWrapProperty;
float?: FloatProperty;
font?: FontProperty;
"font-family"?: FontFamilyProperty;
"font-feature-settings"?: FontFeatureSettingsProperty;
"font-kerning"?: FontKerningProperty;
"font-language-override"?: FontLanguageOverrideProperty;
"font-variation-settings"?: FontVariationSettingsProperty;
"font-size"?: FontSizeProperty<TLength>;
"font-size-adjust"?: FontSizeAdjustProperty;
"font-stretch"?: FontStretchProperty;
"font-style"?: FontStyleProperty;
"font-synthesis"?: FontSynthesisProperty;
"font-variant"?: FontVariantProperty;
"font-variant-alternates"?: FontVariantAlternatesProperty;
"font-variant-caps"?: FontVariantCapsProperty;
"font-variant-east-asian"?: FontVariantEastAsianProperty;
"font-variant-ligatures"?: FontVariantLigaturesProperty;
"font-variant-numeric"?: FontVariantNumericProperty;
"font-variant-position"?: FontVariantPositionProperty;
"font-weight"?: FontWeightProperty;
grid?: AllString;
"grid-area"?: GridAreaProperty;
"grid-auto-columns"?: AllString;
"grid-auto-flow"?: GridAutoFlowProperty;
"grid-auto-rows"?: AllString;
"grid-column"?: GridColumnProperty;
"grid-column-end"?: GridColumnEndProperty;
"grid-column-gap"?: GridColumnGapProperty<TLength>;
"grid-column-start"?: GridColumnStartProperty;
"grid-gap"?: AllString;
"grid-row"?: GridRowProperty;
"grid-row-end"?: GridRowEndProperty;
"grid-row-gap"?: GridRowGapProperty<TLength>;
"grid-row-start"?: GridRowStartProperty;
"grid-template"?: GridTemplateProperty;
"grid-template-areas"?: GridTemplateAreasProperty;
"grid-template-columns"?: GridTemplateColumnsProperty;
"grid-template-rows"?: GridTemplateRowsProperty;
"hanging-punctuation"?: HangingPunctuationProperty;
height?: AllString;
hyphens?: HyphensProperty;
"image-orientation"?: ImageOrientationProperty;
"image-rendering"?: ImageRenderingProperty;
"image-resolution"?: AllString;
"ime-mode"?: ImeModeProperty;
"initial-letter"?: InitialLetterProperty;
"initial-letter-align"?: InitialLetterAlignProperty;
"inline-size"?: AllString;
isolation?: IsolationProperty;
"justify-content"?: JustifyContentProperty;
left?: LeftProperty<TLength>;
"letter-spacing"?: LetterSpacingProperty<TLength>;
"line-break"?: LineBreakProperty;
"line-height"?: LineHeightProperty<TLength>;
"line-height-step"?: LineHeightStepProperty<TLength>;
"list-style"?: AllString;
"list-style-image"?: ListStyleImageProperty;
"list-style-position"?: ListStylePositionProperty;
"list-style-type"?: ListStyleTypeProperty;
margin?: MarginProperty<TLength>;
"margin-block-end"?: AllString;
"margin-block-start"?: AllString;
"margin-bottom"?: MarginBottomProperty<TLength>;
"margin-inline-end"?: AllString;
"margin-inline-start"?: AllString;
"margin-left"?: MarginLeftProperty<TLength>;
"margin-right"?: MarginRightProperty<TLength>;
"margin-top"?: MarginTopProperty<TLength>;
mask?: MaskProperty<TLength>;
"mask-border"?: AllString;
"mask-border-mode"?: MaskBorderModeProperty;
"mask-border-outset"?: MaskBorderOutsetProperty<TLength>;
"mask-border-repeat"?: MaskBorderRepeatProperty;
"mask-border-slice"?: AllString;
"mask-border-source"?: MaskBorderSourceProperty;
"mask-border-width"?: MaskBorderWidthProperty<TLength>;
"mask-clip"?: MaskClipProperty;
"mask-composite"?: MaskCompositeProperty;
"mask-image"?: MaskImageProperty;
"mask-mode"?: MaskModeProperty;
"mask-origin"?: MaskOriginProperty;
"mask-position"?: AllString;
"mask-repeat"?: MaskRepeatProperty;
"mask-size"?: MaskSizeProperty<TLength>;
"mask-type"?: MaskTypeProperty;
"max-block-size"?: AllString;
"max-height"?: MaxHeightProperty<TLength>;
"max-inline-size"?: AllString;
"max-width"?: MaxWidthProperty<TLength>;
"min-block-size"?: AllString;
"min-height"?: MinHeightProperty<TLength>;
"min-inline-size"?: AllString;
"min-width"?: MinWidthProperty<TLength>;
"mix-blend-mode"?: MixBlendModeProperty;
"object-fit"?: ObjectFitProperty;
"object-position"?: AllString;
offset?: AllString;
"offset-anchor"?: OffsetAnchorProperty;
"offset-block-end"?: AllString;
"offset-block-start"?: AllString;
"offset-inline-end"?: AllString;
"offset-inline-start"?: AllString;
"offset-distance"?: OffsetDistanceProperty<TLength>;
"offset-path"?: OffsetPathProperty;
"offset-position"?: OffsetPositionProperty;
"offset-rotate"?: OffsetRotateProperty;
opacity?: AllNumber;
order?: AllNumber;
orphans?: AllNumber;
outline?: AllString;
"outline-color"?: OutlineColorProperty;
"outline-offset"?: OutlineOffsetProperty<TLength>;
"outline-style"?: OutlineStyleProperty;
"outline-width"?: OutlineWidthProperty<TLength>;
overflow?: OverflowProperty;
"overflow-clip-box"?: OverflowClipBoxProperty;
"overflow-wrap"?: OverflowWrapProperty;
"overflow-x"?: OverflowXProperty;
"overflow-y"?: OverflowYProperty;
padding?: PaddingProperty<TLength>;
"padding-block-end"?: AllString;
"padding-block-start"?: AllString;
"padding-bottom"?: PaddingBottomProperty<TLength>;
"padding-inline-end"?: AllString;
"padding-inline-start"?: AllString;
"padding-left"?: PaddingLeftProperty<TLength>;
"padding-right"?: PaddingRightProperty<TLength>;
"padding-top"?: PaddingTopProperty<TLength>;
"page-break-after"?: PageBreakAfterProperty;
"page-break-before"?: PageBreakBeforeProperty;
"page-break-inside"?: PageBreakInsideProperty;
perspective?: PerspectiveProperty<TLength>;
"perspective-origin"?: AllString;
"pointer-events"?: PointerEventsProperty;
position?: PositionProperty;
quotes?: QuotesProperty;
resize?: ResizeProperty;
right?: RightProperty<TLength>;
"ruby-align"?: RubyAlignProperty;
"ruby-merge"?: RubyMergeProperty;
"ruby-position"?: RubyPositionProperty;
"scroll-behavior"?: ScrollBehaviorProperty;
"scroll-snap-coordinate"?: ScrollSnapCoordinateProperty;
"scroll-snap-destination"?: AllString;
"scroll-snap-points-x"?: ScrollSnapPointsXProperty;
"scroll-snap-points-y"?: ScrollSnapPointsYProperty;
"scroll-snap-type"?: ScrollSnapTypeProperty;
"scroll-snap-type-x"?: ScrollSnapTypeXProperty;
"scroll-snap-type-y"?: ScrollSnapTypeYProperty;
"shape-image-threshold"?: AllNumber;
"shape-margin"?: ShapeMarginProperty<TLength>;
"shape-outside"?: ShapeOutsideProperty;
"tab-size"?: TabSizeProperty<TLength>;
"table-layout"?: TableLayoutProperty;
"text-align"?: TextAlignProperty;
"text-align-last"?: TextAlignLastProperty;
"text-combine-upright"?: TextCombineUprightProperty;
"text-decoration"?: AllString;
"text-decoration-color"?: TextDecorationColorProperty;
"text-decoration-line"?: TextDecorationLineProperty;
"text-decoration-skip"?: TextDecorationSkipProperty;
"text-decoration-skip-ink"?: TextDecorationSkipInkProperty;
"text-decoration-style"?: TextDecorationStyleProperty;
"text-emphasis"?: AllString;
"text-emphasis-color"?: TextEmphasisColorProperty;
"text-emphasis-position"?: AllString;
"text-emphasis-style"?: TextEmphasisStyleProperty;
"text-indent"?: AllString;
"text-justify"?: TextJustifyProperty;
"text-orientation"?: TextOrientationProperty;
"text-overflow"?: TextOverflowProperty;
"text-rendering"?: TextRenderingProperty;
"text-shadow"?: TextShadowProperty;
"text-size-adjust"?: TextSizeAdjustProperty;
"text-transform"?: TextTransformProperty;
"text-underline-position"?: TextUnderlinePositionProperty;
top?: TopProperty<TLength>;
"touch-action"?: TouchActionProperty;
transform?: TransformProperty;
"transform-box"?: TransformBoxProperty;
"transform-origin"?: AllString;
"transform-style"?: TransformStyleProperty;
transition?: TransitionProperty;
"transition-delay"?: AllString;
"transition-duration"?: AllString;
"transition-property"?: TransitionPropertyProperty;
"transition-timing-function"?: TransitionTimingFunctionProperty;
"unicode-bidi"?: UnicodeBidiProperty;
"user-select"?: UserSelectProperty;
"vertical-align"?: VerticalAlignProperty<TLength>;
visibility?: VisibilityProperty;
"white-space"?: WhiteSpaceProperty;
widows?: AllNumber;
width?: AllString;
"will-change"?: WillChangeProperty;
"word-break"?: WordBreakProperty;
"word-spacing"?: WordSpacingProperty<TLength>;
"word-wrap"?: WordWrapProperty;
"writing-mode"?: WritingModeProperty;
"z-index"?: ZIndexProperty;
}
export interface StandardPropertiesFallback<TLength = string | number> {
alignContent?: AlignContentProperty | AlignContentProperty[];
alignItems?: AlignItemsProperty | AlignItemsProperty[];
alignSelf?: AlignSelfProperty | AlignSelfProperty[];
animation?: AnimationProperty | AnimationProperty[];
animationDelay?: AllString | AllString[];
animationDirection?: AnimationDirectionProperty | AnimationDirectionProperty[];
animationDuration?: AllString | AllString[];
animationFillMode?: AnimationFillModeProperty | AnimationFillModeProperty[];
animationIterationCount?: AnimationIterationCountProperty | AnimationIterationCountProperty[];
animationName?: AnimationNameProperty | AnimationNameProperty[];
animationPlayState?: AnimationPlayStateProperty | AnimationPlayStateProperty[];
animationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[];
appearance?: AppearanceProperty | AppearanceProperty[];
azimuth?: AzimuthProperty | AzimuthProperty[];
backdropFilter?: BackdropFilterProperty | BackdropFilterProperty[];
backfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[];
background?: AllString | AllString[];
backgroundAttachment?: BackgroundAttachmentProperty | BackgroundAttachmentProperty[];
backgroundBlendMode?: BackgroundBlendModeProperty | BackgroundBlendModeProperty[];
backgroundClip?: BackgroundClipProperty | BackgroundClipProperty[];
backgroundColor?: BackgroundColorProperty | BackgroundColorProperty[];
backgroundImage?: BackgroundImageProperty | BackgroundImageProperty[];
backgroundOrigin?: BackgroundOriginProperty | BackgroundOriginProperty[];
backgroundPosition?: AllString | AllString[];
backgroundPositionX?: AllString | AllString[];
backgroundPositionY?: AllString | AllString[];
backgroundRepeat?: BackgroundRepeatProperty | BackgroundRepeatProperty[];
backgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
blockSize?: AllString | AllString[];
border?: BorderProperty<TLength> | BorderProperty<TLength>[];
borderBlockEnd?: AllString | AllString[];
borderBlockEndColor?: AllString | AllString[];
borderBlockEndStyle?: AllString | AllString[];
borderBlockEndWidth?: AllString | AllString[];
borderBlockStart?: AllString | AllString[];
borderBlockStartColor?: AllString | AllString[];
borderBlockStartStyle?: AllString | AllString[];
borderBlockStartWidth?: AllString | AllString[];
borderBottom?: BorderBottomProperty<TLength> | BorderBottomProperty<TLength>[];
borderBottomColor?: BorderBottomColorProperty | BorderBottomColorProperty[];
borderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[];
borderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[];
borderBottomStyle?: BorderBottomStyleProperty | BorderBottomStyleProperty[];
borderBottomWidth?: BorderBottomWidthProperty<TLength> | BorderBottomWidthProperty<TLength>[];
borderCollapse?: BorderCollapseProperty | BorderCollapseProperty[];
borderColor?: BorderColorProperty | BorderColorProperty[];
borderImage?: AllString | AllString[];
borderImageOutset?: BorderImageOutsetProperty<TLength> | BorderImageOutsetProperty<TLength>[];
borderImageRepeat?: BorderImageRepeatProperty | BorderImageRepeatProperty[];
borderImageSlice?: AllString | AllString[];
borderImageSource?: BorderImageSourceProperty | BorderImageSourceProperty[];
borderImageWidth?: BorderImageWidthProperty<TLength> | BorderImageWidthProperty<TLength>[];
borderInlineEnd?: AllString | AllString[];
borderInlineEndColor?: AllString | AllString[];
borderInlineEndStyle?: AllString | AllString[];
borderInlineEndWidth?: AllString | AllString[];
borderInlineStart?: AllString | AllString[];
borderInlineStartColor?: AllString | AllString[];
borderInlineStartStyle?: AllString | AllString[];
borderInlineStartWidth?: AllString | AllString[];
borderLeft?: BorderLeftProperty<TLength> | BorderLeftProperty<TLength>[];
borderLeftColor?: BorderLeftColorProperty | BorderLeftColorProperty[];
borderLeftStyle?: BorderLeftStyleProperty | BorderLeftStyleProperty[];
borderLeftWidth?: BorderLeftWidthProperty<TLength> | BorderLeftWidthProperty<TLength>[];
borderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[];
borderRight?: BorderRightProperty<TLength> | BorderRightProperty<TLength>[];
borderRightColor?: BorderRightColorProperty | BorderRightColorProperty[];
borderRightStyle?: BorderRightStyleProperty | BorderRightStyleProperty[];
borderRightWidth?: BorderRightWidthProperty<TLength> | BorderRightWidthProperty<TLength>[];
borderSpacing?: AllString | AllString[];
borderStyle?: BorderStyleProperty | BorderStyleProperty[];
borderTop?: BorderTopProperty<TLength> | BorderTopProperty<TLength>[];
borderTopColor?: BorderTopColorProperty | BorderTopColorProperty[];
borderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[];
borderTopRightRadius?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[];
borderTopStyle?: BorderTopStyleProperty | BorderTopStyleProperty[];
borderTopWidth?: BorderTopWidthProperty<TLength> | BorderTopWidthProperty<TLength>[];
borderWidth?: BorderWidthProperty<TLength> | BorderWidthProperty<TLength>[];
bottom?: BottomProperty<TLength> | BottomProperty<TLength>[];
boxAlign?: BoxAlignProperty | BoxAlignProperty[];
boxDecorationBreak?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[];
boxDirection?: BoxDirectionProperty | BoxDirectionProperty[];
boxFlex?: AllNumber | AllNumber[];
boxFlexGroup?: AllNumber | AllNumber[];
boxLines?: BoxLinesProperty | BoxLinesProperty[];
boxOrdinalGroup?: AllNumber | AllNumber[];
boxOrient?: BoxOrientProperty | BoxOrientProperty[];
boxPack?: BoxPackProperty | BoxPackProperty[];
boxShadow?: BoxShadowProperty | BoxShadowProperty[];
boxSizing?: BoxSizingProperty | BoxSizingProperty[];
breakAfter?: BreakAfterProperty | BreakAfterProperty[];
breakBefore?: BreakBeforeProperty | BreakBeforeProperty[];
breakInside?: BreakInsideProperty | BreakInsideProperty[];
captionSide?: CaptionSideProperty | CaptionSideProperty[];
caretColor?: CaretColorProperty | CaretColorProperty[];
clear?: ClearProperty | ClearProperty[];
clip?: ClipProperty | ClipProperty[];
clipPath?: ClipPathProperty | ClipPathProperty[];
color?: ColorProperty | ColorProperty[];
columnCount?: ColumnCountProperty | ColumnCountProperty[];
columnFill?: ColumnFillProperty | ColumnFillProperty[];
columnGap?: ColumnGapProperty<TLength> | ColumnGapProperty<TLength>[];
columnRule?: AllString | AllString[];
columnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[];
columnRuleStyle?: AllString | AllString[];
columnRuleWidth?: AllString | AllString[];
columnSpan?: ColumnSpanProperty | ColumnSpanProperty[];
columnWidth?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[];
columns?: AllString | AllString[];
contain?: ContainProperty | ContainProperty[];
content?: ContentProperty | ContentProperty[];
counterIncrement?: CounterIncrementProperty | CounterIncrementProperty[];
counterReset?: CounterResetProperty | CounterResetProperty[];
cursor?: CursorProperty | CursorProperty[];
direction?: DirectionProperty | DirectionProperty[];
display?: DisplayProperty | DisplayProperty[];
displayInside?: DisplayInsideProperty | DisplayInsideProperty[];
displayList?: DisplayListProperty | DisplayListProperty[];
displayOutside?: DisplayOutsideProperty | DisplayOutsideProperty[];
emptyCells?: EmptyCellsProperty | EmptyCellsProperty[];
filter?: FilterProperty | FilterProperty[];
flex?: FlexProperty | FlexProperty[];
flexBasis?: FlexBasisProperty | FlexBasisProperty[];
flexDirection?: FlexDirectionProperty | FlexDirectionProperty[];
flexFlow?: AllString | AllString[];
flexGrow?: AllNumber | AllNumber[];
flexShrink?: AllNumber | AllNumber[];
flexWrap?: FlexWrapProperty | FlexWrapProperty[];
float?: FloatProperty | FloatProperty[];
font?: FontProperty | FontProperty[];
fontFamily?: FontFamilyProperty | FontFamilyProperty[];
fontFeatureSettings?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[];
fontKerning?: FontKerningProperty | FontKerningProperty[];
fontLanguageOverride?: FontLanguageOverrideProperty | FontLanguageOverrideProperty[];
fontVariationSettings?: FontVariationSettingsProperty | FontVariationSettingsProperty[];
fontSize?: FontSizeProperty<TLength> | FontSizeProperty<TLength>[];
fontSizeAdjust?: FontSizeAdjustProperty | FontSizeAdjustProperty[];
fontStretch?: FontStretchProperty | FontStretchProperty[];
fontStyle?: FontStyleProperty | FontStyleProperty[];
fontSynthesis?: FontSynthesisProperty | FontSynthesisProperty[];
fontVariant?: FontVariantProperty | FontVariantProperty[];
fontVariantAlternates?: FontVariantAlternatesProperty | FontVariantAlternatesProperty[];
fontVariantCaps?: FontVariantCapsProperty | FontVariantCapsProperty[];
fontVariantEastAsian?: FontVariantEastAsianProperty | FontVariantEastAsianProperty[];
fontVariantLigatures?: FontVariantLigaturesProperty | FontVariantLigaturesProperty[];
fontVariantNumeric?: FontVariantNumericProperty | FontVariantNumericProperty[];
fontVariantPosition?: FontVariantPositionProperty | FontVariantPositionProperty[];
fontWeight?: FontWeightProperty | FontWeightProperty[];
grid?: AllString | AllString[];
gridArea?: GridAreaProperty | GridAreaProperty[];
gridAutoColumns?: AllString | AllString[];
gridAutoFlow?: GridAutoFlowProperty | GridAutoFlowProperty[];
gridAutoRows?: AllString | AllString[];
gridColumn?: GridColumnProperty | GridColumnProperty[];
gridColumnEnd?: GridColumnEndProperty | GridColumnEndProperty[];
gridColumnGap?: GridColumnGapProperty<TLength> | GridColumnGapProperty<TLength>[];
gridColumnStart?: GridColumnStartProperty | GridColumnStartProperty[];
gridGap?: AllString | AllString[];
gridRow?: GridRowProperty | GridRowProperty[];
gridRowEnd?: GridRowEndProperty | GridRowEndProperty[];
gridRowGap?: GridRowGapProperty<TLength> | GridRowGapProperty<TLength>[];
gridRowStart?: GridRowStartProperty | GridRowStartProperty[];
gridTemplate?: GridTemplateProperty | GridTemplateProperty[];
gridTemplateAreas?: GridTemplateAreasProperty | GridTemplateAreasProperty[];
gridTemplateColumns?: GridTemplateColumnsProperty | GridTemplateColumnsProperty[];
gridTemplateRows?: GridTemplateRowsProperty | GridTemplateRowsProperty[];
hangingPunctuation?: HangingPunctuationProperty | HangingPunctuationProperty[];
height?: AllString | AllString[];
hyphens?: HyphensProperty | HyphensProperty[];
imageOrientation?: ImageOrientationProperty | ImageOrientationProperty[];
imageRendering?: ImageRenderingProperty | ImageRenderingProperty[];
imageResolution?: AllString | AllString[];
imeMode?: ImeModeProperty | ImeModeProperty[];
initialLetter?: InitialLetterProperty | InitialLetterProperty[];
initialLetterAlign?: InitialLetterAlignProperty | InitialLetterAlignProperty[];
inlineSize?: AllString | AllString[];
isolation?: IsolationProperty | IsolationProperty[];
justifyContent?: JustifyContentProperty | JustifyContentProperty[];
left?: LeftProperty<TLength> | LeftProperty<TLength>[];
letterSpacing?: LetterSpacingProperty<TLength> | LetterSpacingProperty<TLength>[];
lineBreak?: LineBreakProperty | LineBreakProperty[];
lineHeight?: LineHeightProperty<TLength> | LineHeightProperty<TLength>[];
lineHeightStep?: LineHeightStepProperty<TLength> | LineHeightStepProperty<TLength>[];
listStyle?: AllString | AllString[];
listStyleImage?: ListStyleImageProperty | ListStyleImageProperty[];
listStylePosition?: ListStylePositionProperty | ListStylePositionProperty[];
listStyleType?: ListStyleTypeProperty | ListStyleTypeProperty[];
margin?: MarginProperty<TLength> | MarginProperty<TLength>[];
marginBlockEnd?: AllString | AllString[];
marginBlockStart?: AllString | AllString[];
marginBottom?: MarginBottomProperty<TLength> | MarginBottomProperty<TLength>[];
marginInlineEnd?: AllString | AllString[];
marginInlineStart?: AllString | AllString[];
marginLeft?: MarginLeftProperty<TLength> | MarginLeftProperty<TLength>[];
marginRight?: MarginRightProperty<TLength> | MarginRightProperty<TLength>[];
marginTop?: MarginTopProperty<TLength> | MarginTopProperty<TLength>[];
mask?: MaskProperty<TLength> | MaskProperty<TLength>[];
maskBorder?: AllString | AllString[];
maskBorderMode?: MaskBorderModeProperty | MaskBorderModeProperty[];
maskBorderOutset?: MaskBorderOutsetProperty<TLength> | MaskBorderOutsetProperty<TLength>[];
maskBorderRepeat?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[];
maskBorderSlice?: AllString | AllString[];
maskBorderSource?: MaskBorderSourceProperty | MaskBorderSourceProperty[];
maskBorderWidth?: MaskBorderWidthProperty<TLength> | MaskBorderWidthProperty<TLength>[];
maskClip?: MaskClipProperty | MaskClipProperty[];
maskComposite?: MaskCompositeProperty | MaskCompositeProperty[];
maskImage?: MaskImageProperty | MaskImageProperty[];
maskMode?: MaskModeProperty | MaskModeProperty[];
maskOrigin?: MaskOriginProperty | MaskOriginProperty[];
maskPosition?: AllString | AllString[];
maskRepeat?: MaskRepeatProperty | MaskRepeatProperty[];
maskSize?: MaskSizeProperty<TLength> | MaskSizeProperty<TLength>[];
maskType?: MaskTypeProperty | MaskTypeProperty[];
maxBlockSize?: AllString | AllString[];
maxHeight?: MaxHeightProperty<TLength> | MaxHeightProperty<TLength>[];
maxInlineSize?: AllString | AllString[];
maxWidth?: MaxWidthProperty<TLength> | MaxWidthProperty<TLength>[];
minBlockSize?: AllString | AllString[];
minHeight?: MinHeightProperty<TLength> | MinHeightProperty<TLength>[];
minInlineSize?: AllString | AllString[];
minWidth?: MinWidthProperty<TLength> | MinWidthProperty<TLength>[];
mixBlendMode?: MixBlendModeProperty | MixBlendModeProperty[];
objectFit?: ObjectFitProperty | ObjectFitProperty[];
objectPosition?: AllString | AllString[];
offset?: AllString | AllString[];
offsetAnchor?: OffsetAnchorProperty | OffsetAnchorProperty[];
offsetBlockEnd?: AllString | AllString[];
offsetBlockStart?: AllString | AllString[];
offsetInlineEnd?: AllString | AllString[];
offsetInlineStart?: AllString | AllString[];
offsetDistance?: OffsetDistanceProperty<TLength> | OffsetDistanceProperty<TLength>[];
offsetPath?: OffsetPathProperty | OffsetPathProperty[];
offsetPosition?: OffsetPositionProperty | OffsetPositionProperty[];
offsetRotate?: OffsetRotateProperty | OffsetRotateProperty[];
opacity?: AllNumber | AllNumber[];
order?: AllNumber | AllNumber[];
orphans?: AllNumber | AllNumber[];
outline?: AllString | AllString[];
outlineColor?: OutlineColorProperty | OutlineColorProperty[];
outlineOffset?: OutlineOffsetProperty<TLength> | OutlineOffsetProperty<TLength>[];
outlineStyle?: OutlineStyleProperty | OutlineStyleProperty[];
outlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[];
overflow?: OverflowProperty | OverflowProperty[];
overflowClipBox?: OverflowClipBoxProperty | OverflowClipBoxProperty[];
overflowWrap?: OverflowWrapProperty | OverflowWrapProperty[];
overflowX?: OverflowXProperty | OverflowXProperty[];
overflowY?: OverflowYProperty | OverflowYProperty[];
padding?: PaddingProperty<TLength> | PaddingProperty<TLength>[];
paddingBlockEnd?: AllString | AllString[];
paddingBlockStart?: AllString | AllString[];
paddingBottom?: PaddingBottomProperty<TLength> | PaddingBottomProperty<TLength>[];
paddingInlineEnd?: AllString | AllString[];
paddingInlineStart?: AllString | AllString[];
paddingLeft?: PaddingLeftProperty<TLength> | PaddingLeftProperty<TLength>[];
paddingRight?: PaddingRightProperty<TLength> | PaddingRightProperty<TLength>[];
paddingTop?: PaddingTopProperty<TLength> | PaddingTopProperty<TLength>[];
pageBreakAfter?: PageBreakAfterProperty | PageBreakAfterProperty[];
pageBreakBefore?: PageBreakBeforeProperty | PageBreakBeforeProperty[];
pageBreakInside?: PageBreakInsideProperty | PageBreakInsideProperty[];
perspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[];
perspectiveOrigin?: AllString | AllString[];
pointerEvents?: PointerEventsProperty | PointerEventsProperty[];
position?: PositionProperty | PositionProperty[];
quotes?: QuotesProperty | QuotesProperty[];
resize?: ResizeProperty | ResizeProperty[];
right?: RightProperty<TLength> | RightProperty<TLength>[];
rubyAlign?: RubyAlignProperty | RubyAlignProperty[];
rubyMerge?: RubyMergeProperty | RubyMergeProperty[];
rubyPosition?: RubyPositionProperty | RubyPositionProperty[];
scrollBehavior?: ScrollBehaviorProperty | ScrollBehaviorProperty[];
scrollSnapCoordinate?: ScrollSnapCoordinateProperty | ScrollSnapCoordinateProperty[];
scrollSnapDestination?: AllString | AllString[];
scrollSnapPointsX?: ScrollSnapPointsXProperty | ScrollSnapPointsXProperty[];
scrollSnapPointsY?: ScrollSnapPointsYProperty | ScrollSnapPointsYProperty[];
scrollSnapType?: ScrollSnapTypeProperty | ScrollSnapTypeProperty[];
scrollSnapTypeX?: ScrollSnapTypeXProperty | ScrollSnapTypeXProperty[];
scrollSnapTypeY?: ScrollSnapTypeYProperty | ScrollSnapTypeYProperty[];
shapeImageThreshold?: AllNumber | AllNumber[];
shapeMargin?: ShapeMarginProperty<TLength> | ShapeMarginProperty<TLength>[];
shapeOutside?: ShapeOutsideProperty | ShapeOutsideProperty[];
tabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[];
tableLayout?: TableLayoutProperty | TableLayoutProperty[];
textAlign?: TextAlignProperty | TextAlignProperty[];
textAlignLast?: TextAlignLastProperty | TextAlignLastProperty[];
textCombineUpright?: TextCombineUprightProperty | TextCombineUprightProperty[];
textDecoration?: AllString | AllString[];
textDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[];
textDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[];
textDecorationSkip?: TextDecorationSkipProperty | TextDecorationSkipProperty[];
textDecorationSkipInk?: TextDecorationSkipInkProperty | TextDecorationSkipInkProperty[];
textDecorationStyle?: TextDecorationStyleProperty | TextDecorationStyleProperty[];
textEmphasis?: AllString | AllString[];
textEmphasisColor?: TextEmphasisColorProperty | TextEmphasisColorProperty[];
textEmphasisPosition?: AllString | AllString[];
textEmphasisStyle?: TextEmphasisStyleProperty | TextEmphasisStyleProperty[];
textIndent?: AllString | AllString[];
textJustify?: TextJustifyProperty | TextJustifyProperty[];
textOrientation?: TextOrientationProperty | TextOrientationProperty[];
textOverflow?: TextOverflowProperty | TextOverflowProperty[];
textRendering?: TextRenderingProperty | TextRenderingProperty[];
textShadow?: TextShadowProperty | TextShadowProperty[];
textSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[];
textTransform?: TextTransformProperty | TextTransformProperty[];
textUnderlinePosition?: TextUnderlinePositionProperty | TextUnderlinePositionProperty[];
top?: TopProperty<TLength> | TopProperty<TLength>[];
touchAction?: TouchActionProperty | TouchActionProperty[];
transform?: TransformProperty | TransformProperty[];
transformBox?: TransformBoxProperty | TransformBoxProperty[];
transformOrigin?: AllString | AllString[];
transformStyle?: TransformStyleProperty | TransformStyleProperty[];
transition?: TransitionProperty | TransitionProperty[];
transitionDelay?: AllString | AllString[];
transitionDuration?: AllString | AllString[];
transitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[];
transitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[];
unicodeBidi?: UnicodeBidiProperty | UnicodeBidiProperty[];
userSelect?: UserSelectProperty | UserSelectProperty[];
verticalAlign?: VerticalAlignProperty<TLength> | VerticalAlignProperty<TLength>[];
visibility?: VisibilityProperty | VisibilityProperty[];
whiteSpace?: WhiteSpaceProperty | WhiteSpaceProperty[];
widows?: AllNumber | AllNumber[];
width?: AllString | AllString[];
willChange?: WillChangeProperty | WillChangeProperty[];
wordBreak?: WordBreakProperty | WordBreakProperty[];
wordSpacing?: WordSpacingProperty<TLength> | WordSpacingProperty<TLength>[];
wordWrap?: WordWrapProperty | WordWrapProperty[];
writingMode?: WritingModeProperty | WritingModeProperty[];
zIndex?: ZIndexProperty | ZIndexProperty[];
}
export interface StandardPropertiesHyphenFallback<TLength = string | number> {
"align-content"?: AlignContentProperty | AlignContentProperty[];
"align-items"?: AlignItemsProperty | AlignItemsProperty[];
"align-self"?: AlignSelfProperty | AlignSelfProperty[];
animation?: AnimationProperty | AnimationProperty[];