yuyeon 0.0.40 → 0.0.41

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.
@@ -144,6 +144,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
144
144
  defaultSelect?: unknown;
145
145
  maxHeight?: unknown;
146
146
  expandIcon?: unknown;
147
+ openDelay?: unknown;
148
+ closeDelay?: unknown;
147
149
  } = {}>(defaults?: Defaults | undefined) => {
148
150
  position: unknown extends Defaults["position"] ? Omit<{
149
151
  type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
@@ -467,6 +469,26 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
467
469
  type: PropType<unknown extends Defaults["expandIcon"] ? Record<string, any> : Record<string, any> | Defaults["expandIcon"]>;
468
470
  default: unknown extends Defaults["expandIcon"] ? Record<string, any> : Record<string, any> | Defaults["expandIcon"];
469
471
  };
472
+ openDelay: unknown extends Defaults["openDelay"] ? {
473
+ type: PropType<number>;
474
+ default: number;
475
+ } : Omit<{
476
+ type: PropType<number>;
477
+ default: number;
478
+ }, "default" | "type"> & {
479
+ type: PropType<unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"]>;
480
+ default: unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"];
481
+ };
482
+ closeDelay: unknown extends Defaults["closeDelay"] ? {
483
+ type: PropType<number>;
484
+ default: number;
485
+ } : Omit<{
486
+ type: PropType<number>;
487
+ default: number;
488
+ }, "default" | "type"> & {
489
+ type: PropType<unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"]>;
490
+ default: unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"];
491
+ };
470
492
  };
471
493
  export declare const YSelect: import("vue").DefineComponent<{
472
494
  position: Omit<{
@@ -585,11 +607,3896 @@ export declare const YSelect: import("vue").DefineComponent<{
585
607
  expandIcon: {
586
608
  type: ObjectConstructor;
587
609
  };
610
+ openDelay: {
611
+ type: PropType<number>;
612
+ default: number;
613
+ };
614
+ closeDelay: {
615
+ type: PropType<number>;
616
+ default: number;
617
+ };
588
618
  }, {
589
619
  fieldInputRef: import("vue").Ref<any>;
590
620
  model: import("vue").WritableComputedRef<any>;
591
621
  selections: import("vue").ComputedRef<ListItem<any>[]>;
592
622
  selected: import("vue").ComputedRef<any[]>;
623
+ menuRef: import("vue").Ref<({
624
+ $: import("vue").ComponentInternalInstance;
625
+ $data: {};
626
+ $props: {
627
+ disabled?: boolean | undefined;
628
+ contentStyles?: import("vue").CSSProperties | undefined;
629
+ openOnHover?: boolean | undefined;
630
+ openDelay?: number | undefined;
631
+ closeDelay?: number | undefined;
632
+ coordinateStrategy?: string | import("../../composables/coordinate").CoordinateStrategyFn | undefined;
633
+ position?: "default" | "top" | "end" | "right" | "bottom" | "left" | "start" | undefined;
634
+ align?: "end" | "start" | "center" | undefined;
635
+ origin?: string | undefined;
636
+ viewportMargin?: number | undefined;
637
+ transition?: string | (import("vue").TransitionProps & {
638
+ is?: import("vue").Component | undefined;
639
+ }) | undefined;
640
+ preventClip?: boolean | undefined;
641
+ openOnClickBase?: boolean | undefined;
642
+ closeCondition?: boolean | Function | undefined;
643
+ readonly theme?: string | undefined;
644
+ class?: unknown;
645
+ readonly width?: string | number | undefined;
646
+ readonly height?: string | number | undefined;
647
+ readonly modelValue?: boolean | undefined;
648
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
649
+ readonly classes?: string | string[] | Record<string, any> | undefined;
650
+ readonly scrim?: boolean | undefined;
651
+ readonly scrimOpacity?: number | undefined;
652
+ readonly eager?: boolean | undefined;
653
+ readonly contentClasses?: string | string[] | Record<string, any> | undefined;
654
+ readonly closeClickScrim?: boolean | undefined;
655
+ readonly offset?: string | number | unknown[] | undefined;
656
+ readonly minWidth?: string | number | undefined;
657
+ readonly maxWidth?: string | number | undefined;
658
+ readonly minHeight?: string | number | undefined;
659
+ readonly maxHeight?: string | number | undefined;
660
+ onAfterLeave?: ((...args: any[]) => any) | undefined;
661
+ style?: unknown;
662
+ key?: string | number | symbol | undefined;
663
+ readonly preventCloseBubble?: boolean | undefined;
664
+ readonly menuClasses?: string | string[] | Record<string, any> | undefined;
665
+ ref?: import("vue").VNodeRef | undefined;
666
+ ref_for?: boolean | undefined;
667
+ ref_key?: string | undefined;
668
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
669
+ [key: string]: any;
670
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
671
+ [key: string]: any;
672
+ }>) => void)[] | undefined;
673
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
674
+ [key: string]: any;
675
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
676
+ [key: string]: any;
677
+ }>) => void)[] | undefined;
678
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
679
+ [key: string]: any;
680
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
681
+ [key: string]: any;
682
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
683
+ [key: string]: any;
684
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
685
+ [key: string]: any;
686
+ }>) => void)[] | undefined;
687
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
688
+ [key: string]: any;
689
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
690
+ [key: string]: any;
691
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
692
+ [key: string]: any;
693
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
694
+ [key: string]: any;
695
+ }>) => void)[] | undefined;
696
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
697
+ [key: string]: any;
698
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
699
+ [key: string]: any;
700
+ }>) => void)[] | undefined;
701
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
702
+ [key: string]: any;
703
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
704
+ [key: string]: any;
705
+ }>) => void)[] | undefined;
706
+ };
707
+ $attrs: {
708
+ [x: string]: unknown;
709
+ };
710
+ $refs: {
711
+ [x: string]: unknown;
712
+ };
713
+ $slots: Readonly<{
714
+ [name: string]: import("vue").Slot<any> | undefined;
715
+ }>;
716
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
717
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
718
+ $emit: (event: "update:modelValue" | "afterLeave", ...args: any[]) => void;
719
+ $el: any;
720
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
721
+ transition: {
722
+ default: string;
723
+ type: PropType<string | (import("vue").TransitionProps & {
724
+ is?: import("vue").Component | undefined;
725
+ })>;
726
+ };
727
+ preventCloseBubble: PropType<boolean>;
728
+ minWidth: PropType<string | number>;
729
+ width: PropType<string | number>;
730
+ maxWidth: PropType<string | number>;
731
+ minHeight: PropType<string | number>;
732
+ height: PropType<string | number>;
733
+ maxHeight: PropType<string | number>;
734
+ coordinateStrategy: Omit<{
735
+ type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
736
+ default: string;
737
+ }, "default" | "type"> & {
738
+ type: PropType<string | import("../../composables/coordinate").CoordinateStrategyFn>;
739
+ default: string | import("../../composables/coordinate").CoordinateStrategyFn;
740
+ };
741
+ position: {
742
+ type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
743
+ default: string;
744
+ };
745
+ align: {
746
+ type: PropType<"end" | "start" | "center">;
747
+ default: string;
748
+ };
749
+ origin: {
750
+ type: StringConstructor;
751
+ default: string;
752
+ };
753
+ offset: {
754
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
755
+ };
756
+ viewportMargin: {
757
+ type: NumberConstructor;
758
+ default: number;
759
+ };
760
+ theme: StringConstructor;
761
+ modelValue: {
762
+ type: PropType<boolean>;
763
+ };
764
+ scrim: {
765
+ type: PropType<boolean>;
766
+ };
767
+ scrimOpacity: {
768
+ type: PropType<number>;
769
+ };
770
+ eager: {
771
+ type: PropType<boolean>;
772
+ };
773
+ classes: {
774
+ type: PropType<string | string[] | Record<string, any>>;
775
+ };
776
+ contentClasses: {
777
+ type: PropType<string | string[] | Record<string, any>>;
778
+ };
779
+ closeClickScrim: {
780
+ type: PropType<boolean>;
781
+ };
782
+ contentStyles: {
783
+ type: PropType<import("vue").CSSProperties>;
784
+ default: () => void;
785
+ };
786
+ disabled: {
787
+ type: PropType<boolean>;
788
+ default: boolean;
789
+ };
790
+ openOnHover: {
791
+ type: PropType<boolean>;
792
+ default: boolean;
793
+ };
794
+ openDelay: {
795
+ type: PropType<number>;
796
+ default: number;
797
+ };
798
+ closeDelay: {
799
+ type: PropType<number>;
800
+ default: number;
801
+ };
802
+ menuClasses: {
803
+ type: PropType<string | string[] | Record<string, any>>;
804
+ };
805
+ openOnClickBase: {
806
+ type: PropType<boolean>;
807
+ default: boolean;
808
+ };
809
+ closeCondition: {
810
+ type: (BooleanConstructor | FunctionConstructor)[];
811
+ default: undefined;
812
+ };
813
+ preventClip: {
814
+ type: PropType<boolean>;
815
+ default: boolean;
816
+ };
817
+ }>> & {
818
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
819
+ onAfterLeave?: ((...args: any[]) => any) | undefined;
820
+ }, {
821
+ layer$: import("vue").Ref<import("vue").DefineComponent<{
822
+ minWidth: PropType<string | number>;
823
+ width: PropType<string | number>;
824
+ maxWidth: PropType<string | number>;
825
+ minHeight: PropType<string | number>;
826
+ height: PropType<string | number>;
827
+ maxHeight: PropType<string | number>;
828
+ coordinateStrategy: {
829
+ type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
830
+ default: string;
831
+ };
832
+ position: {
833
+ type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
834
+ default: string;
835
+ };
836
+ align: {
837
+ type: PropType<"end" | "start" | "center">;
838
+ default: string;
839
+ };
840
+ origin: {
841
+ type: StringConstructor;
842
+ default: string;
843
+ };
844
+ offset: {
845
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
846
+ };
847
+ viewportMargin: {
848
+ type: NumberConstructor;
849
+ default: number;
850
+ };
851
+ transition: {
852
+ type: PropType<string | (import("vue").TransitionProps & {
853
+ is?: import("vue").Component | undefined;
854
+ })>;
855
+ default: string;
856
+ };
857
+ theme: StringConstructor;
858
+ modelValue: {
859
+ type: PropType<boolean>;
860
+ };
861
+ scrim: {
862
+ type: PropType<boolean>;
863
+ };
864
+ scrimOpacity: {
865
+ type: PropType<number>;
866
+ };
867
+ eager: {
868
+ type: PropType<boolean>;
869
+ };
870
+ classes: {
871
+ type: PropType<string | string[] | Record<string, any>>;
872
+ };
873
+ contentClasses: {
874
+ type: PropType<string | string[] | Record<string, any>>;
875
+ };
876
+ closeClickScrim: {
877
+ type: PropType<boolean>;
878
+ };
879
+ contentStyles: {
880
+ type: PropType<import("vue").CSSProperties>;
881
+ default: () => void;
882
+ };
883
+ disabled: {
884
+ type: PropType<boolean>;
885
+ default: boolean;
886
+ };
887
+ openOnHover: {
888
+ type: PropType<boolean>;
889
+ default: boolean;
890
+ };
891
+ openDelay: {
892
+ type: PropType<number>;
893
+ default: number;
894
+ };
895
+ closeDelay: {
896
+ type: PropType<number>;
897
+ default: number;
898
+ };
899
+ modal: PropType<boolean>;
900
+ }, {
901
+ complementClickOption: {
902
+ handler: (mouseEvent: MouseEvent) => void;
903
+ determine?: ((event: Event) => boolean) | undefined;
904
+ include?: (() => (HTMLElement | undefined)[]) | undefined;
905
+ };
906
+ layerGroup: import("vue").ComputedRef<HTMLElement>;
907
+ active: import("vue").WritableComputedRef<boolean>;
908
+ rendered: import("vue").ComputedRef<boolean>;
909
+ lazyValue: import("vue").ComputedRef<any>;
910
+ onAfterUpdate: () => void;
911
+ scrim$: import("vue").Ref<HTMLElement | undefined>;
912
+ content$: import("vue").Ref<HTMLElement | undefined>;
913
+ base$: import("vue").Ref<any>;
914
+ baseEl: import("vue").Ref<HTMLElement | undefined>;
915
+ polyTransitionBindProps: import("vue").ComputedRef<{
916
+ is: any;
917
+ transitionProps: any;
918
+ }>;
919
+ coordinateStyles: import("vue").Ref<{
920
+ [x: `--${string}`]: string | number | undefined;
921
+ accentColor?: import("csstype").Property.AccentColor | undefined;
922
+ alignContent?: import("csstype").Property.AlignContent | undefined;
923
+ alignItems?: import("csstype").Property.AlignItems | undefined;
924
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
925
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
926
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
927
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
928
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
929
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
930
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
931
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
932
+ animationName?: import("csstype").Property.AnimationName | undefined;
933
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
934
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
935
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
936
+ appearance?: import("csstype").Property.Appearance | undefined;
937
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
938
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
939
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
940
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
941
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
942
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
943
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
944
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
945
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
946
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
947
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
948
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
949
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
950
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
951
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
952
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
953
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
954
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
955
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
956
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
957
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
958
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
959
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
960
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
961
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
962
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
963
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
964
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
965
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
966
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
967
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
968
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
969
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
970
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
971
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
972
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
973
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
974
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
975
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
976
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
977
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
978
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
979
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
980
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
981
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
982
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
983
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
984
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
985
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
986
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
987
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
988
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
989
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
990
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
991
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
992
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
993
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
994
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
995
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
996
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
997
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
998
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
999
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1000
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1001
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1002
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1003
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1004
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1005
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1006
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1007
+ clear?: import("csstype").Property.Clear | undefined;
1008
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1009
+ color?: import("csstype").Property.Color | undefined;
1010
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1011
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1012
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1013
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1014
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1015
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1016
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1017
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1018
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1019
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1020
+ contain?: import("csstype").Property.Contain | undefined;
1021
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1022
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1023
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1024
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1025
+ containerName?: import("csstype").Property.ContainerName | undefined;
1026
+ containerType?: import("csstype").Property.ContainerType | undefined;
1027
+ content?: import("csstype").Property.Content | undefined;
1028
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1029
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1030
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1031
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1032
+ cursor?: import("csstype").Property.Cursor | undefined;
1033
+ direction?: import("csstype").Property.Direction | undefined;
1034
+ display?: import("csstype").Property.Display | undefined;
1035
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1036
+ filter?: import("csstype").Property.Filter | undefined;
1037
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1038
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1039
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1040
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1041
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1042
+ float?: import("csstype").Property.Float | undefined;
1043
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1044
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1045
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1046
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1047
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1048
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1049
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1050
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1051
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1052
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1053
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1054
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1055
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1056
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1057
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1058
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1059
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1060
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1061
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1062
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1063
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1064
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1065
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1066
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1067
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1068
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1069
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1070
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1071
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1072
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1073
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1074
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1075
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1076
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1077
+ height?: import("csstype").Property.Height<string | number> | undefined;
1078
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1079
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1080
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1081
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1082
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1083
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1084
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1085
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1086
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1087
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1088
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1089
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1090
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1091
+ isolation?: import("csstype").Property.Isolation | undefined;
1092
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1093
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1094
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1095
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1096
+ left?: import("csstype").Property.Left<string | number> | undefined;
1097
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1098
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1099
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1100
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1101
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1102
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1103
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1104
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1105
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1106
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1107
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1108
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1109
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1110
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1111
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1112
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1113
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1114
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1115
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1116
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1117
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1118
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1119
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1120
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1121
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1122
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1123
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1124
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1125
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1126
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1127
+ maskType?: import("csstype").Property.MaskType | undefined;
1128
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1129
+ mathShift?: import("csstype").Property.MathShift | undefined;
1130
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1131
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1132
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1133
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1134
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1135
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1136
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1137
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1138
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1139
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1140
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1141
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1142
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1143
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1144
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1145
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1146
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1147
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1148
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1149
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1150
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1151
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1152
+ opacity?: import("csstype").Property.Opacity | undefined;
1153
+ order?: import("csstype").Property.Order | undefined;
1154
+ orphans?: import("csstype").Property.Orphans | undefined;
1155
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1156
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1157
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1158
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1159
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1160
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1161
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1162
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1163
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1164
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1165
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1166
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1167
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1168
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1169
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1170
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1171
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1172
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1173
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1174
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1175
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1176
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1177
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1178
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1179
+ page?: import("csstype").Property.Page | undefined;
1180
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1181
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1182
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1183
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1184
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1185
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1186
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1187
+ position?: import("csstype").Property.Position | undefined;
1188
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1189
+ quotes?: import("csstype").Property.Quotes | undefined;
1190
+ resize?: import("csstype").Property.Resize | undefined;
1191
+ right?: import("csstype").Property.Right<string | number> | undefined;
1192
+ rotate?: import("csstype").Property.Rotate | undefined;
1193
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1194
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1195
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1196
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1197
+ scale?: import("csstype").Property.Scale | undefined;
1198
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1199
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1200
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1201
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1202
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1203
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1204
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1205
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1206
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1207
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1208
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1209
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1210
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1211
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1212
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1213
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1214
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1215
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1216
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1217
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1218
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1219
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1220
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1221
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1222
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1223
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1224
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1225
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1226
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1227
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1228
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1229
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1230
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1231
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1232
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1233
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1234
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1235
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1236
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1237
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1238
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1239
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1240
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1241
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1242
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1243
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1244
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1245
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1246
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1247
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1248
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1249
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1250
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1251
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1252
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1253
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1254
+ top?: import("csstype").Property.Top<string | number> | undefined;
1255
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1256
+ transform?: import("csstype").Property.Transform | undefined;
1257
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1258
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1259
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1260
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1261
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1262
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1263
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1264
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1265
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1266
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1267
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1268
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1269
+ visibility?: import("csstype").Property.Visibility | undefined;
1270
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1271
+ widows?: import("csstype").Property.Widows | undefined;
1272
+ width?: import("csstype").Property.Width<string | number> | undefined;
1273
+ willChange?: import("csstype").Property.WillChange | undefined;
1274
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1275
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1276
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1277
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1278
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1279
+ zoom?: import("csstype").Property.Zoom | undefined;
1280
+ all?: import("csstype").Globals | undefined;
1281
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1282
+ background?: import("csstype").Property.Background<string | number> | undefined;
1283
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1284
+ border?: import("csstype").Property.Border<string | number> | undefined;
1285
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1286
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1287
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1288
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1289
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1290
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1291
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1292
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1293
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1294
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1295
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1296
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1297
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1298
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1299
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1300
+ caret?: import("csstype").Property.Caret | undefined;
1301
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1302
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
1303
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1304
+ container?: import("csstype").Property.Container | undefined;
1305
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
1306
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1307
+ font?: import("csstype").Property.Font | undefined;
1308
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
1309
+ grid?: import("csstype").Property.Grid | undefined;
1310
+ gridArea?: import("csstype").Property.GridArea | undefined;
1311
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1312
+ gridRow?: import("csstype").Property.GridRow | undefined;
1313
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1314
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1315
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1316
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1317
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1318
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1319
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
1320
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1321
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1322
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
1323
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1324
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
1325
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
1326
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
1327
+ overflow?: import("csstype").Property.Overflow | undefined;
1328
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1329
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
1330
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1331
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1332
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1333
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1334
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1335
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1336
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1337
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1338
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1339
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1340
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1341
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1342
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1343
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1344
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1345
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1346
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1347
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1348
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1349
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1350
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1351
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1352
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1353
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1354
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1355
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1356
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1357
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1358
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1359
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1360
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1361
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1362
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1363
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1364
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1365
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1366
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1367
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1368
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1369
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1370
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1371
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1372
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1373
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1374
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1375
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1376
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1377
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1378
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1379
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1380
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1381
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1382
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1383
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1384
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1385
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1386
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1387
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1388
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1389
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1390
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1391
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1392
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1393
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1394
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1395
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1396
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1397
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1398
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1399
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1400
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1401
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1402
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1403
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1404
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1405
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1406
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1407
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1408
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1409
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1410
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1411
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1412
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1413
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1414
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1415
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1416
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1417
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1418
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1419
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1420
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1421
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1422
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1423
+ msOrder?: import("csstype").Property.Order | undefined;
1424
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1425
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1426
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1427
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1428
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1429
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1430
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1431
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1432
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1433
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1434
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1435
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1436
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1437
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1438
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1439
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1440
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1441
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1442
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1443
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1444
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1445
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1446
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1447
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1448
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1449
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1450
+ msTransform?: import("csstype").Property.Transform | undefined;
1451
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1452
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1453
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1454
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1455
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1456
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1457
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1458
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1459
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1460
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1461
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1462
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1463
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1464
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1465
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1466
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1467
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1468
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1469
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1470
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1471
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1472
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1473
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1474
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1475
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1476
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1477
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1478
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1479
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1480
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1481
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1482
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1483
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1484
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1485
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1486
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1487
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1488
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1489
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1490
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1491
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1492
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1493
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1494
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1495
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1496
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1497
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1498
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1499
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1500
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1501
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1502
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1503
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1504
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1505
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1506
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1507
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1508
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1509
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1510
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1511
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1512
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1513
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1514
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1515
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1516
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1517
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1518
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1519
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1520
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1521
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1522
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1523
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1524
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1525
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1526
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1527
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1528
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1529
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1530
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1531
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1532
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1533
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1534
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1535
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1536
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1537
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1538
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1539
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1540
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1541
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1542
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1543
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1544
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1545
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1546
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1547
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1548
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1549
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1550
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1551
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1552
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1553
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1554
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1555
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1556
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1557
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1558
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1559
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1560
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1561
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1562
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1563
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1564
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1565
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1566
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1567
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1568
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1569
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1570
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1571
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1572
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1573
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1574
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1575
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1576
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1577
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1578
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1579
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1580
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1581
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1582
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1583
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1584
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1585
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1586
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1587
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1588
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1589
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1590
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1591
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1592
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1593
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1594
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1595
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1596
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1597
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1598
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1599
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1600
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1601
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1602
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1603
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1604
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1605
+ clip?: import("csstype").Property.Clip | undefined;
1606
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1607
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1608
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1609
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1610
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1611
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1612
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1613
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1614
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1615
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1616
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1617
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1618
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1619
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1620
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1621
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1622
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1623
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1624
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1625
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1626
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1627
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1628
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1629
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1630
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1631
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1632
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1633
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1634
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1635
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1636
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1637
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1638
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1639
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1640
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1641
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1642
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1643
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1644
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1645
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1646
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1647
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1648
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1649
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1650
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1651
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1652
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1653
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1654
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1655
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1656
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1657
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1658
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1659
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1660
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1661
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1662
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1663
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1664
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1665
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1666
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1667
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1668
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1669
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1670
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1671
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1672
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1673
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1674
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1675
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1676
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1677
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1678
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1679
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1680
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1681
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1682
+ OTransform?: import("csstype").Property.Transform | undefined;
1683
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1684
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1685
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1686
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1687
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1688
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1689
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1690
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1691
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1692
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1693
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1694
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1695
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1696
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1697
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1698
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1699
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1700
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1701
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1702
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1703
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1704
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1705
+ fill?: import("csstype").Property.Fill | undefined;
1706
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1707
+ fillRule?: import("csstype").Property.FillRule | undefined;
1708
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1709
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1710
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1711
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1712
+ marker?: import("csstype").Property.Marker | undefined;
1713
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1714
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1715
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1716
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1717
+ stopColor?: import("csstype").Property.StopColor | undefined;
1718
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1719
+ stroke?: import("csstype").Property.Stroke | undefined;
1720
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1721
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1722
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1723
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1724
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1725
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1726
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1727
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1728
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1729
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
1730
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
1731
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
1732
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
1733
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
1734
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
1735
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1736
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1737
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1738
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1739
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1740
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
1741
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1742
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
1743
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1744
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
1745
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1746
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1747
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
1748
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
1749
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1750
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
1751
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
1752
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1753
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1754
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1755
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
1756
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1757
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
1758
+ "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
1759
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
1760
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
1761
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
1762
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1763
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
1764
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
1765
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1766
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
1767
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1768
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
1769
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1770
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1771
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
1772
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1773
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
1774
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1775
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1776
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1777
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
1778
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1779
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
1780
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1781
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
1782
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1783
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1784
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1785
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1786
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1787
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1788
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
1789
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1790
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
1791
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
1792
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1793
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
1794
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
1795
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1796
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1797
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1798
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1799
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
1800
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1801
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1802
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
1803
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1804
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1805
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1806
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1807
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
1808
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
1809
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
1810
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
1811
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
1812
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
1813
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
1814
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1815
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
1816
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
1817
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
1818
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
1819
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1820
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1821
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1822
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
1823
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1824
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1825
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1826
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1827
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1828
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
1829
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
1830
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
1831
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
1832
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
1833
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
1834
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
1835
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1836
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1837
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1838
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1839
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1840
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
1841
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1842
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
1843
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1844
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
1845
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
1846
+ "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
1847
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
1848
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1849
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
1850
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
1851
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
1852
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
1853
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
1854
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
1855
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
1856
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
1857
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1858
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
1859
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
1860
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
1861
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
1862
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
1863
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1864
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
1865
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1866
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
1867
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
1868
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
1869
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
1870
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
1871
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1872
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1873
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
1874
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1875
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
1876
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
1877
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
1878
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
1879
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1880
+ "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
1881
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
1882
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1883
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1884
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1885
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1886
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
1887
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
1888
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
1889
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
1890
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1891
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
1892
+ "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
1893
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1894
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
1895
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
1896
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
1897
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1898
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1899
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
1900
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1901
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1902
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
1903
+ "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
1904
+ "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
1905
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
1906
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
1907
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1908
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1909
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1910
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
1911
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1912
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
1913
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
1914
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
1915
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
1916
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
1917
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
1918
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
1919
+ "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
1920
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
1921
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
1922
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
1923
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
1924
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1925
+ "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
1926
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1927
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
1928
+ "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
1929
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1930
+ "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
1931
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1932
+ "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
1933
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
1934
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1935
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
1936
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1937
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
1938
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1939
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1940
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1941
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
1942
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1943
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
1944
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1945
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
1946
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1947
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1948
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1949
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
1950
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
1951
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
1952
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1953
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
1954
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
1955
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
1956
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
1957
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1958
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1959
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
1960
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
1961
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1962
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1963
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1964
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1965
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1966
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1967
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
1968
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
1969
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
1970
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
1971
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
1972
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
1973
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1974
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
1975
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1976
+ "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
1977
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
1978
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
1979
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1980
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
1981
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1982
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1983
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1984
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1985
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1986
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1987
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1988
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1989
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1990
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1991
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1992
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1993
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1994
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1995
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1996
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1997
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
1998
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1999
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2000
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2001
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2002
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
2003
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
2004
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
2005
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
2006
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
2007
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
2008
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
2009
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
2010
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2011
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
2012
+ "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2013
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
2014
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
2015
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
2016
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
2017
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
2018
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
2019
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
2020
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
2021
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
2022
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2023
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
2024
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
2025
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
2026
+ "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
2027
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
2028
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
2029
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2030
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
2031
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
2032
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2033
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
2034
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2035
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
2036
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
2037
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
2038
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2039
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
2040
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2041
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2042
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2043
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2044
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
2045
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
2046
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2047
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
2048
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
2049
+ "will-change"?: import("csstype").Property.WillChange | undefined;
2050
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
2051
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
2052
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
2053
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
2054
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
2055
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2056
+ "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
2057
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2058
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2059
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
2060
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
2061
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
2062
+ "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
2063
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2064
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2065
+ "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
2066
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
2067
+ "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
2068
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
2069
+ "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
2070
+ "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
2071
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
2072
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2073
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
2074
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
2075
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
2076
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
2077
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
2078
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
2079
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
2080
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
2081
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
2082
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
2083
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
2084
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
2085
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
2086
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2087
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
2088
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
2089
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
2090
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
2091
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2092
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2093
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2094
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2095
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2096
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2097
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2098
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
2099
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
2100
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
2101
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2102
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2103
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2104
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2105
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2106
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
2107
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2108
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2109
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
2110
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
2111
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
2112
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
2113
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2114
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2115
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2116
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
2117
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
2118
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2119
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2120
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
2121
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2122
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
2123
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
2124
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2125
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2126
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2127
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2128
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
2129
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2130
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2131
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
2132
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
2133
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2134
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2135
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
2136
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2137
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2138
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2139
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
2140
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2141
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
2142
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2143
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
2144
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2145
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2146
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
2147
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2148
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2149
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2150
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2151
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
2152
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
2153
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
2154
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
2155
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
2156
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
2157
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
2158
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
2159
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2160
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2161
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2162
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
2163
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
2164
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
2165
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2166
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
2167
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
2168
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
2169
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2170
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
2171
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
2172
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2173
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2174
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2175
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
2176
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
2177
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
2178
+ "-ms-order"?: import("csstype").Property.Order | undefined;
2179
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
2180
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
2181
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
2182
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
2183
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2184
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2185
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2186
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2187
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
2188
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2189
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2190
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
2191
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
2192
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2193
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2194
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2195
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2196
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2197
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2198
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2199
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2200
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
2201
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
2202
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2203
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
2204
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
2205
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
2206
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2207
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2208
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2209
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2210
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2211
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
2212
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
2213
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
2214
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2215
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
2216
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
2217
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
2218
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
2219
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
2220
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2221
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2222
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2223
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2224
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2225
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
2226
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2227
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2228
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
2229
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
2230
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
2231
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
2232
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
2233
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2234
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2235
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2236
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2237
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2238
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2239
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
2240
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2241
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2242
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
2243
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2244
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
2245
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2246
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
2247
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
2248
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
2249
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2250
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2251
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2252
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
2253
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2254
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
2255
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
2256
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2257
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
2258
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
2259
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
2260
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2261
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
2262
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2263
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
2264
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
2265
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
2266
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
2267
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
2268
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
2269
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
2270
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2271
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2272
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
2273
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2274
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
2275
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
2276
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
2277
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2278
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
2279
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
2280
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
2281
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
2282
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2283
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2284
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2285
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
2286
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2287
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2288
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2289
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2290
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
2291
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2292
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2293
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2294
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
2295
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2296
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2297
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
2298
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
2299
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2300
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2301
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
2302
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
2303
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
2304
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
2305
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
2306
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
2307
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
2308
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
2309
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
2310
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
2311
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2312
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2313
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2314
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
2315
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
2316
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
2317
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2318
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
2319
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2320
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2321
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2322
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2323
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
2324
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
2325
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
2326
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
2327
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
2328
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
2329
+ "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
2330
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
2331
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
2332
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
2333
+ "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
2334
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
2335
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
2336
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
2337
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
2338
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
2339
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2340
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
2341
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
2342
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
2343
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
2344
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
2345
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
2346
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
2347
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
2348
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
2349
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2350
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
2351
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
2352
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
2353
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
2354
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
2355
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
2356
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
2357
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
2358
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
2359
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2360
+ "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
2361
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
2362
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
2363
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
2364
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2365
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2366
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
2367
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2368
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2369
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2370
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2371
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
2372
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
2373
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
2374
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
2375
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
2376
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
2377
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
2378
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
2379
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
2380
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
2381
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
2382
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
2383
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
2384
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
2385
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
2386
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
2387
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
2388
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
2389
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2390
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
2391
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2392
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2393
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2394
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2395
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
2396
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
2397
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
2398
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
2399
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
2400
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
2401
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
2402
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
2403
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2404
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
2405
+ "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
2406
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
2407
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2408
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2409
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2410
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2411
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2412
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
2413
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2414
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
2415
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
2416
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
2417
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
2418
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
2419
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
2420
+ "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
2421
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2422
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2423
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2424
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2425
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2426
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
2427
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2428
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2429
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2430
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
2431
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
2432
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2433
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2434
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2435
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
2436
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2437
+ "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
2438
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2439
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2440
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2441
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2442
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
2443
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
2444
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
2445
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
2446
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
2447
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
2448
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
2449
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
2450
+ "-webkit-scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
2451
+ "-webkit-scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
2452
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
2453
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
2454
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
2455
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
2456
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
2457
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
2458
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
2459
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
2460
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
2461
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
2462
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
2463
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
2464
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
2465
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
2466
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
2467
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
2468
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
2469
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
2470
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2471
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2472
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
2473
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
2474
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
2475
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
2476
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2477
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
2478
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
2479
+ }>;
2480
+ layerGroupState: WeakMap<HTMLElement, Set<any>>;
2481
+ getActiveLayers: () => import("vue").ComponentInternalInstance[];
2482
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2483
+ 'update:modelValue': (value: boolean) => true;
2484
+ 'click:complement': (mouseEvent: MouseEvent) => true;
2485
+ afterLeave: () => true;
2486
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2487
+ minWidth: PropType<string | number>;
2488
+ width: PropType<string | number>;
2489
+ maxWidth: PropType<string | number>;
2490
+ minHeight: PropType<string | number>;
2491
+ height: PropType<string | number>;
2492
+ maxHeight: PropType<string | number>;
2493
+ coordinateStrategy: {
2494
+ type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
2495
+ default: string;
2496
+ };
2497
+ position: {
2498
+ type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
2499
+ default: string;
2500
+ };
2501
+ align: {
2502
+ type: PropType<"end" | "start" | "center">;
2503
+ default: string;
2504
+ };
2505
+ origin: {
2506
+ type: StringConstructor;
2507
+ default: string;
2508
+ };
2509
+ offset: {
2510
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
2511
+ };
2512
+ viewportMargin: {
2513
+ type: NumberConstructor;
2514
+ default: number;
2515
+ };
2516
+ transition: {
2517
+ type: PropType<string | (import("vue").TransitionProps & {
2518
+ is?: import("vue").Component | undefined;
2519
+ })>;
2520
+ default: string;
2521
+ };
2522
+ theme: StringConstructor;
2523
+ modelValue: {
2524
+ type: PropType<boolean>;
2525
+ };
2526
+ scrim: {
2527
+ type: PropType<boolean>;
2528
+ };
2529
+ scrimOpacity: {
2530
+ type: PropType<number>;
2531
+ };
2532
+ eager: {
2533
+ type: PropType<boolean>;
2534
+ };
2535
+ classes: {
2536
+ type: PropType<string | string[] | Record<string, any>>;
2537
+ };
2538
+ contentClasses: {
2539
+ type: PropType<string | string[] | Record<string, any>>;
2540
+ };
2541
+ closeClickScrim: {
2542
+ type: PropType<boolean>;
2543
+ };
2544
+ contentStyles: {
2545
+ type: PropType<import("vue").CSSProperties>;
2546
+ default: () => void;
2547
+ };
2548
+ disabled: {
2549
+ type: PropType<boolean>;
2550
+ default: boolean;
2551
+ };
2552
+ openOnHover: {
2553
+ type: PropType<boolean>;
2554
+ default: boolean;
2555
+ };
2556
+ openDelay: {
2557
+ type: PropType<number>;
2558
+ default: number;
2559
+ };
2560
+ closeDelay: {
2561
+ type: PropType<number>;
2562
+ default: number;
2563
+ };
2564
+ modal: PropType<boolean>;
2565
+ }>> & {
2566
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2567
+ onAfterLeave?: (() => any) | undefined;
2568
+ "onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
2569
+ }, {
2570
+ disabled: boolean;
2571
+ contentStyles: import("vue").CSSProperties;
2572
+ openOnHover: boolean;
2573
+ openDelay: number;
2574
+ closeDelay: number;
2575
+ coordinateStrategy: "levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn;
2576
+ position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
2577
+ align: "end" | "start" | "center";
2578
+ origin: string;
2579
+ viewportMargin: number;
2580
+ transition: string | (import("vue").TransitionProps & {
2581
+ is?: import("vue").Component | undefined;
2582
+ });
2583
+ }, SlotsType<{
2584
+ base: any;
2585
+ default: any;
2586
+ }>> | undefined>;
2587
+ baseEl: import("vue").ComputedRef<any>;
2588
+ classes: import("vue").ComputedRef<{
2589
+ 'y-menu': boolean;
2590
+ }>;
2591
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "afterLeave")[], string, {
2592
+ disabled: boolean;
2593
+ contentStyles: import("vue").CSSProperties;
2594
+ openOnHover: boolean;
2595
+ openDelay: number;
2596
+ closeDelay: number;
2597
+ coordinateStrategy: string | import("../../composables/coordinate").CoordinateStrategyFn;
2598
+ position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
2599
+ align: "end" | "start" | "center";
2600
+ origin: string;
2601
+ viewportMargin: number;
2602
+ transition: string | (import("vue").TransitionProps & {
2603
+ is?: import("vue").Component | undefined;
2604
+ });
2605
+ preventClip: boolean;
2606
+ openOnClickBase: boolean;
2607
+ closeCondition: boolean | Function;
2608
+ }, {}, string, {}> & {
2609
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2610
+ created?: ((() => void) | (() => void)[]) | undefined;
2611
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2612
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2613
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2614
+ updated?: ((() => void) | (() => void)[]) | undefined;
2615
+ activated?: ((() => void) | (() => void)[]) | undefined;
2616
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2617
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2618
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2619
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2620
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2621
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2622
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2623
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
2624
+ };
2625
+ $forceUpdate: () => void;
2626
+ $nextTick: typeof import("vue").nextTick;
2627
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
2628
+ } & Readonly<import("vue").ExtractPropTypes<{
2629
+ transition: {
2630
+ default: string;
2631
+ type: PropType<string | (import("vue").TransitionProps & {
2632
+ is?: import("vue").Component | undefined;
2633
+ })>;
2634
+ };
2635
+ preventCloseBubble: PropType<boolean>;
2636
+ minWidth: PropType<string | number>;
2637
+ width: PropType<string | number>;
2638
+ maxWidth: PropType<string | number>;
2639
+ minHeight: PropType<string | number>;
2640
+ height: PropType<string | number>;
2641
+ maxHeight: PropType<string | number>;
2642
+ coordinateStrategy: Omit<{
2643
+ type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
2644
+ default: string;
2645
+ }, "default" | "type"> & {
2646
+ type: PropType<string | import("../../composables/coordinate").CoordinateStrategyFn>;
2647
+ default: string | import("../../composables/coordinate").CoordinateStrategyFn;
2648
+ };
2649
+ position: {
2650
+ type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
2651
+ default: string;
2652
+ };
2653
+ align: {
2654
+ type: PropType<"end" | "start" | "center">;
2655
+ default: string;
2656
+ };
2657
+ origin: {
2658
+ type: StringConstructor;
2659
+ default: string;
2660
+ };
2661
+ offset: {
2662
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
2663
+ };
2664
+ viewportMargin: {
2665
+ type: NumberConstructor;
2666
+ default: number;
2667
+ };
2668
+ theme: StringConstructor;
2669
+ modelValue: {
2670
+ type: PropType<boolean>;
2671
+ };
2672
+ scrim: {
2673
+ type: PropType<boolean>;
2674
+ };
2675
+ scrimOpacity: {
2676
+ type: PropType<number>;
2677
+ };
2678
+ eager: {
2679
+ type: PropType<boolean>;
2680
+ };
2681
+ classes: {
2682
+ type: PropType<string | string[] | Record<string, any>>;
2683
+ };
2684
+ contentClasses: {
2685
+ type: PropType<string | string[] | Record<string, any>>;
2686
+ };
2687
+ closeClickScrim: {
2688
+ type: PropType<boolean>;
2689
+ };
2690
+ contentStyles: {
2691
+ type: PropType<import("vue").CSSProperties>;
2692
+ default: () => void;
2693
+ };
2694
+ disabled: {
2695
+ type: PropType<boolean>;
2696
+ default: boolean;
2697
+ };
2698
+ openOnHover: {
2699
+ type: PropType<boolean>;
2700
+ default: boolean;
2701
+ };
2702
+ openDelay: {
2703
+ type: PropType<number>;
2704
+ default: number;
2705
+ };
2706
+ closeDelay: {
2707
+ type: PropType<number>;
2708
+ default: number;
2709
+ };
2710
+ menuClasses: {
2711
+ type: PropType<string | string[] | Record<string, any>>;
2712
+ };
2713
+ openOnClickBase: {
2714
+ type: PropType<boolean>;
2715
+ default: boolean;
2716
+ };
2717
+ closeCondition: {
2718
+ type: (BooleanConstructor | FunctionConstructor)[];
2719
+ default: undefined;
2720
+ };
2721
+ preventClip: {
2722
+ type: PropType<boolean>;
2723
+ default: boolean;
2724
+ };
2725
+ }>> & {
2726
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2727
+ onAfterLeave?: ((...args: any[]) => any) | undefined;
2728
+ } & import("vue").ShallowUnwrapRef<{
2729
+ layer$: import("vue").Ref<import("vue").DefineComponent<{
2730
+ minWidth: PropType<string | number>;
2731
+ width: PropType<string | number>;
2732
+ maxWidth: PropType<string | number>;
2733
+ minHeight: PropType<string | number>;
2734
+ height: PropType<string | number>;
2735
+ maxHeight: PropType<string | number>;
2736
+ coordinateStrategy: {
2737
+ type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
2738
+ default: string;
2739
+ };
2740
+ position: {
2741
+ type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
2742
+ default: string;
2743
+ };
2744
+ align: {
2745
+ type: PropType<"end" | "start" | "center">;
2746
+ default: string;
2747
+ };
2748
+ origin: {
2749
+ type: StringConstructor;
2750
+ default: string;
2751
+ };
2752
+ offset: {
2753
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
2754
+ };
2755
+ viewportMargin: {
2756
+ type: NumberConstructor;
2757
+ default: number;
2758
+ };
2759
+ transition: {
2760
+ type: PropType<string | (import("vue").TransitionProps & {
2761
+ is?: import("vue").Component | undefined;
2762
+ })>;
2763
+ default: string;
2764
+ };
2765
+ theme: StringConstructor;
2766
+ modelValue: {
2767
+ type: PropType<boolean>;
2768
+ };
2769
+ scrim: {
2770
+ type: PropType<boolean>;
2771
+ };
2772
+ scrimOpacity: {
2773
+ type: PropType<number>;
2774
+ };
2775
+ eager: {
2776
+ type: PropType<boolean>;
2777
+ };
2778
+ classes: {
2779
+ type: PropType<string | string[] | Record<string, any>>;
2780
+ };
2781
+ contentClasses: {
2782
+ type: PropType<string | string[] | Record<string, any>>;
2783
+ };
2784
+ closeClickScrim: {
2785
+ type: PropType<boolean>;
2786
+ };
2787
+ contentStyles: {
2788
+ type: PropType<import("vue").CSSProperties>;
2789
+ default: () => void;
2790
+ };
2791
+ disabled: {
2792
+ type: PropType<boolean>;
2793
+ default: boolean;
2794
+ };
2795
+ openOnHover: {
2796
+ type: PropType<boolean>;
2797
+ default: boolean;
2798
+ };
2799
+ openDelay: {
2800
+ type: PropType<number>;
2801
+ default: number;
2802
+ };
2803
+ closeDelay: {
2804
+ type: PropType<number>;
2805
+ default: number;
2806
+ };
2807
+ modal: PropType<boolean>;
2808
+ }, {
2809
+ complementClickOption: {
2810
+ handler: (mouseEvent: MouseEvent) => void;
2811
+ determine?: ((event: Event) => boolean) | undefined;
2812
+ include?: (() => (HTMLElement | undefined)[]) | undefined;
2813
+ };
2814
+ layerGroup: import("vue").ComputedRef<HTMLElement>;
2815
+ active: import("vue").WritableComputedRef<boolean>;
2816
+ rendered: import("vue").ComputedRef<boolean>;
2817
+ lazyValue: import("vue").ComputedRef<any>;
2818
+ onAfterUpdate: () => void;
2819
+ scrim$: import("vue").Ref<HTMLElement | undefined>;
2820
+ content$: import("vue").Ref<HTMLElement | undefined>;
2821
+ base$: import("vue").Ref<any>;
2822
+ baseEl: import("vue").Ref<HTMLElement | undefined>;
2823
+ polyTransitionBindProps: import("vue").ComputedRef<{
2824
+ is: any;
2825
+ transitionProps: any;
2826
+ }>;
2827
+ coordinateStyles: import("vue").Ref<{
2828
+ [x: `--${string}`]: string | number | undefined;
2829
+ accentColor?: import("csstype").Property.AccentColor | undefined;
2830
+ alignContent?: import("csstype").Property.AlignContent | undefined;
2831
+ alignItems?: import("csstype").Property.AlignItems | undefined;
2832
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
2833
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
2834
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
2835
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2836
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
2837
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2838
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2839
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2840
+ animationName?: import("csstype").Property.AnimationName | undefined;
2841
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2842
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
2843
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2844
+ appearance?: import("csstype").Property.Appearance | undefined;
2845
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
2846
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2847
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2848
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
2849
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
2850
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2851
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
2852
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
2853
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2854
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2855
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2856
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
2857
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2858
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
2859
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
2860
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
2861
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
2862
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
2863
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2864
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
2865
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
2866
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2867
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
2868
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2869
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
2870
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2871
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2872
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
2873
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2874
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
2875
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2876
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2877
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2878
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
2879
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2880
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
2881
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2882
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
2883
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2884
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2885
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2886
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2887
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2888
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2889
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
2890
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2891
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
2892
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
2893
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2894
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
2895
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
2896
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2897
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2898
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2899
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2900
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
2901
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2902
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2903
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
2904
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2905
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
2906
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2907
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
2908
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
2909
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
2910
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
2911
+ breakInside?: import("csstype").Property.BreakInside | undefined;
2912
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
2913
+ caretColor?: import("csstype").Property.CaretColor | undefined;
2914
+ caretShape?: import("csstype").Property.CaretShape | undefined;
2915
+ clear?: import("csstype").Property.Clear | undefined;
2916
+ clipPath?: import("csstype").Property.ClipPath | undefined;
2917
+ color?: import("csstype").Property.Color | undefined;
2918
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2919
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
2920
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
2921
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
2922
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
2923
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2924
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2925
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2926
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
2927
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2928
+ contain?: import("csstype").Property.Contain | undefined;
2929
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2930
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2931
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2932
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2933
+ containerName?: import("csstype").Property.ContainerName | undefined;
2934
+ containerType?: import("csstype").Property.ContainerType | undefined;
2935
+ content?: import("csstype").Property.Content | undefined;
2936
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
2937
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
2938
+ counterReset?: import("csstype").Property.CounterReset | undefined;
2939
+ counterSet?: import("csstype").Property.CounterSet | undefined;
2940
+ cursor?: import("csstype").Property.Cursor | undefined;
2941
+ direction?: import("csstype").Property.Direction | undefined;
2942
+ display?: import("csstype").Property.Display | undefined;
2943
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
2944
+ filter?: import("csstype").Property.Filter | undefined;
2945
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2946
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
2947
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
2948
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
2949
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
2950
+ float?: import("csstype").Property.Float | undefined;
2951
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
2952
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2953
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
2954
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2955
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
2956
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
2957
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
2958
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
2959
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
2960
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
2961
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
2962
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
2963
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
2964
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
2965
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
2966
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
2967
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
2968
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2969
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
2970
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
2971
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
2972
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
2973
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
2974
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2975
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
2976
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2977
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
2978
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
2979
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
2980
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
2981
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
2982
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2983
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2984
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
2985
+ height?: import("csstype").Property.Height<string | number> | undefined;
2986
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2987
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
2988
+ hyphens?: import("csstype").Property.Hyphens | undefined;
2989
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
2990
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
2991
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
2992
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
2993
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
2994
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
2995
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2996
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2997
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2998
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2999
+ isolation?: import("csstype").Property.Isolation | undefined;
3000
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
3001
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
3002
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
3003
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
3004
+ left?: import("csstype").Property.Left<string | number> | undefined;
3005
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
3006
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
3007
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
3008
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
3009
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
3010
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
3011
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
3012
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
3013
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
3014
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
3015
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3016
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3017
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
3018
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
3019
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
3020
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
3021
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
3022
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3023
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3024
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3025
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
3026
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3027
+ maskClip?: import("csstype").Property.MaskClip | undefined;
3028
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
3029
+ maskImage?: import("csstype").Property.MaskImage | undefined;
3030
+ maskMode?: import("csstype").Property.MaskMode | undefined;
3031
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
3032
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
3033
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
3034
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
3035
+ maskType?: import("csstype").Property.MaskType | undefined;
3036
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
3037
+ mathShift?: import("csstype").Property.MathShift | undefined;
3038
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
3039
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
3040
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
3041
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3042
+ maxLines?: import("csstype").Property.MaxLines | undefined;
3043
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
3044
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
3045
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
3046
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
3047
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
3048
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
3049
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3050
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
3051
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
3052
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
3053
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3054
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
3055
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3056
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
3057
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
3058
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
3059
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
3060
+ opacity?: import("csstype").Property.Opacity | undefined;
3061
+ order?: import("csstype").Property.Order | undefined;
3062
+ orphans?: import("csstype").Property.Orphans | undefined;
3063
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
3064
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
3065
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
3066
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3067
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
3068
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
3069
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
3070
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
3071
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
3072
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
3073
+ overflowX?: import("csstype").Property.OverflowX | undefined;
3074
+ overflowY?: import("csstype").Property.OverflowY | undefined;
3075
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
3076
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
3077
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
3078
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
3079
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
3080
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
3081
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
3082
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3083
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3084
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
3085
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
3086
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
3087
+ page?: import("csstype").Property.Page | undefined;
3088
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
3089
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
3090
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
3091
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
3092
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
3093
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3094
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
3095
+ position?: import("csstype").Property.Position | undefined;
3096
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3097
+ quotes?: import("csstype").Property.Quotes | undefined;
3098
+ resize?: import("csstype").Property.Resize | undefined;
3099
+ right?: import("csstype").Property.Right<string | number> | undefined;
3100
+ rotate?: import("csstype").Property.Rotate | undefined;
3101
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
3102
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
3103
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
3104
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
3105
+ scale?: import("csstype").Property.Scale | undefined;
3106
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
3107
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
3108
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
3109
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3110
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
3111
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
3112
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3113
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3114
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3115
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
3116
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
3117
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
3118
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
3119
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
3120
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
3121
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
3122
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
3123
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
3124
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3125
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3126
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3127
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3128
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
3129
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
3130
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
3131
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
3132
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
3133
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
3134
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
3135
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
3136
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3137
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
3138
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3139
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
3140
+ textAlign?: import("csstype").Property.TextAlign | undefined;
3141
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
3142
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
3143
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3144
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3145
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
3146
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
3147
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3148
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
3149
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
3150
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
3151
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
3152
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
3153
+ textJustify?: import("csstype").Property.TextJustify | undefined;
3154
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
3155
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
3156
+ textRendering?: import("csstype").Property.TextRendering | undefined;
3157
+ textShadow?: import("csstype").Property.TextShadow | undefined;
3158
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3159
+ textTransform?: import("csstype").Property.TextTransform | undefined;
3160
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
3161
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
3162
+ top?: import("csstype").Property.Top<string | number> | undefined;
3163
+ touchAction?: import("csstype").Property.TouchAction | undefined;
3164
+ transform?: import("csstype").Property.Transform | undefined;
3165
+ transformBox?: import("csstype").Property.TransformBox | undefined;
3166
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3167
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
3168
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3169
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3170
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3171
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3172
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
3173
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
3174
+ userSelect?: import("csstype").Property.UserSelect | undefined;
3175
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
3176
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
3177
+ visibility?: import("csstype").Property.Visibility | undefined;
3178
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
3179
+ widows?: import("csstype").Property.Widows | undefined;
3180
+ width?: import("csstype").Property.Width<string | number> | undefined;
3181
+ willChange?: import("csstype").Property.WillChange | undefined;
3182
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
3183
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
3184
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
3185
+ writingMode?: import("csstype").Property.WritingMode | undefined;
3186
+ zIndex?: import("csstype").Property.ZIndex | undefined;
3187
+ zoom?: import("csstype").Property.Zoom | undefined;
3188
+ all?: import("csstype").Globals | undefined;
3189
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
3190
+ background?: import("csstype").Property.Background<string | number> | undefined;
3191
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
3192
+ border?: import("csstype").Property.Border<string | number> | undefined;
3193
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
3194
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
3195
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
3196
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
3197
+ borderColor?: import("csstype").Property.BorderColor | undefined;
3198
+ borderImage?: import("csstype").Property.BorderImage | undefined;
3199
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
3200
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
3201
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
3202
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
3203
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3204
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
3205
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
3206
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
3207
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
3208
+ caret?: import("csstype").Property.Caret | undefined;
3209
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3210
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
3211
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
3212
+ container?: import("csstype").Property.Container | undefined;
3213
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
3214
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
3215
+ font?: import("csstype").Property.Font | undefined;
3216
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
3217
+ grid?: import("csstype").Property.Grid | undefined;
3218
+ gridArea?: import("csstype").Property.GridArea | undefined;
3219
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
3220
+ gridRow?: import("csstype").Property.GridRow | undefined;
3221
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
3222
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
3223
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
3224
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
3225
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
3226
+ listStyle?: import("csstype").Property.ListStyle | undefined;
3227
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
3228
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
3229
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
3230
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
3231
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
3232
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
3233
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
3234
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
3235
+ overflow?: import("csstype").Property.Overflow | undefined;
3236
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
3237
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
3238
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
3239
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
3240
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
3241
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
3242
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
3243
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
3244
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
3245
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
3246
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
3247
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
3248
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
3249
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
3250
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
3251
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
3252
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
3253
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
3254
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3255
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3256
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3257
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3258
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3259
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
3260
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3261
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3262
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
3263
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3264
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
3265
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
3266
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
3267
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
3268
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
3269
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
3270
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
3271
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
3272
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
3273
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
3274
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
3275
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
3276
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
3277
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3278
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3279
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3280
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3281
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
3282
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3283
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
3284
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
3285
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
3286
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3287
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3288
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
3289
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3290
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3291
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3292
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3293
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3294
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
3295
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3296
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
3297
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3298
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3299
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3300
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3301
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3302
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3303
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3304
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
3305
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
3306
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
3307
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
3308
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
3309
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
3310
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
3311
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
3312
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
3313
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
3314
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
3315
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
3316
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
3317
+ msFilter?: import("csstype").Property.MsFilter | undefined;
3318
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3319
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
3320
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
3321
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
3322
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
3323
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
3324
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
3325
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
3326
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
3327
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
3328
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
3329
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
3330
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
3331
+ msOrder?: import("csstype").Property.Order | undefined;
3332
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
3333
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
3334
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
3335
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
3336
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
3337
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
3338
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
3339
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
3340
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
3341
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
3342
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
3343
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
3344
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
3345
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
3346
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
3347
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
3348
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
3349
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
3350
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
3351
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
3352
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
3353
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
3354
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
3355
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3356
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
3357
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
3358
+ msTransform?: import("csstype").Property.Transform | undefined;
3359
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3360
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3361
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3362
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3363
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3364
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
3365
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
3366
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
3367
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
3368
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
3369
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
3370
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
3371
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
3372
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
3373
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3374
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3375
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3376
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3377
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3378
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
3379
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3380
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3381
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
3382
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
3383
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
3384
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3385
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3386
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3387
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3388
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3389
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3390
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3391
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3392
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
3393
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3394
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3395
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
3396
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3397
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3398
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
3399
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
3400
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
3401
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
3402
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
3403
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
3404
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3405
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
3406
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3407
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
3408
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
3409
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
3410
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
3411
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
3412
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
3413
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
3414
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
3415
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
3416
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
3417
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
3418
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
3419
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
3420
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
3421
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
3422
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
3423
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3424
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3425
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
3426
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3427
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
3428
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
3429
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
3430
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3431
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
3432
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
3433
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
3434
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
3435
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3436
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3437
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3438
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
3439
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3440
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3441
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3442
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3443
+ WebkitOrder?: import("csstype").Property.Order | undefined;
3444
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3445
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3446
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3447
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
3448
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3449
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
3450
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
3451
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
3452
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3453
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3454
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
3455
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3456
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3457
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
3458
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3459
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
3460
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
3461
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
3462
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
3463
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
3464
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
3465
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3466
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3467
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
3468
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
3469
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
3470
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3471
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
3472
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3473
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3474
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3475
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3476
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
3477
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
3478
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
3479
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3480
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
3481
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3482
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
3483
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3484
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
3485
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
3486
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
3487
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
3488
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
3489
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
3490
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3491
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3492
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3493
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
3494
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3495
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
3496
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
3497
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
3498
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
3499
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
3500
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
3501
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
3502
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3503
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3504
+ azimuth?: import("csstype").Property.Azimuth | undefined;
3505
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
3506
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
3507
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
3508
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3509
+ boxLines?: import("csstype").Property.BoxLines | undefined;
3510
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3511
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
3512
+ boxPack?: import("csstype").Property.BoxPack | undefined;
3513
+ clip?: import("csstype").Property.Clip | undefined;
3514
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3515
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
3516
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
3517
+ imeMode?: import("csstype").Property.ImeMode | undefined;
3518
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
3519
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3520
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3521
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
3522
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3523
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3524
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3525
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3526
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
3527
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
3528
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
3529
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
3530
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3531
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3532
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3533
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3534
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
3535
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3536
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3537
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
3538
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
3539
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
3540
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
3541
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
3542
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
3543
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
3544
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3545
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
3546
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3547
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3548
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3549
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3550
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3551
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3552
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3553
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3554
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3555
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
3556
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
3557
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
3558
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3559
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
3560
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
3561
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
3562
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3563
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3564
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
3565
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
3566
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
3567
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
3568
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3569
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
3570
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
3571
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
3572
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
3573
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
3574
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
3575
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
3576
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3577
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
3578
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3579
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
3580
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
3581
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
3582
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
3583
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
3584
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3585
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
3586
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
3587
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3588
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
3589
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
3590
+ OTransform?: import("csstype").Property.Transform | undefined;
3591
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3592
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
3593
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3594
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3595
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
3596
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
3597
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
3598
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
3599
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
3600
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
3601
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
3602
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
3603
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
3604
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
3605
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
3606
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
3607
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
3608
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
3609
+ clipRule?: import("csstype").Property.ClipRule | undefined;
3610
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
3611
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
3612
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
3613
+ fill?: import("csstype").Property.Fill | undefined;
3614
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
3615
+ fillRule?: import("csstype").Property.FillRule | undefined;
3616
+ floodColor?: import("csstype").Property.FloodColor | undefined;
3617
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
3618
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
3619
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
3620
+ marker?: import("csstype").Property.Marker | undefined;
3621
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
3622
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
3623
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
3624
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
3625
+ stopColor?: import("csstype").Property.StopColor | undefined;
3626
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
3627
+ stroke?: import("csstype").Property.Stroke | undefined;
3628
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3629
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3630
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
3631
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
3632
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
3633
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
3634
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3635
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
3636
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
3637
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
3638
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
3639
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
3640
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
3641
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
3642
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
3643
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3644
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3645
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3646
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3647
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3648
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
3649
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3650
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
3651
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3652
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
3653
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
3654
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3655
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
3656
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
3657
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3658
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
3659
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
3660
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3661
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
3662
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
3663
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
3664
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3665
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
3666
+ "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
3667
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
3668
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
3669
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
3670
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
3671
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
3672
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
3673
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
3674
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
3675
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
3676
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
3677
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3678
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3679
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
3680
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
3681
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
3682
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
3683
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
3684
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
3685
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
3686
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
3687
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
3688
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
3689
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
3690
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
3691
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
3692
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
3693
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
3694
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
3695
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
3696
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
3697
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
3698
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
3699
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
3700
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
3701
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
3702
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
3703
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
3704
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
3705
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
3706
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
3707
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
3708
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3709
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3710
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
3711
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
3712
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
3713
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3714
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
3715
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
3716
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
3717
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
3718
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
3719
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
3720
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
3721
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
3722
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3723
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
3724
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
3725
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
3726
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
3727
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
3728
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
3729
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3730
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
3731
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3732
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
3733
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
3734
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
3735
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
3736
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
3737
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
3738
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
3739
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
3740
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
3741
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
3742
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
3743
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
3744
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
3745
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
3746
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
3747
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
3748
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
3749
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
3750
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
3751
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
3752
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
3753
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
3754
+ "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
3755
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
3756
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
3757
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
3758
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
3759
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
3760
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
3761
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
3762
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
3763
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
3764
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
3765
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
3766
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
3767
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
3768
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
3769
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
3770
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
3771
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
3772
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
3773
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
3774
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
3775
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
3776
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
3777
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
3778
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
3779
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
3780
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
3781
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
3782
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
3783
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
3784
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
3785
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
3786
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
3787
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
3788
+ "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
3789
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
3790
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3791
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3792
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3793
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3794
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
3795
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
3796
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
3797
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
3798
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
3799
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
3800
+ "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
3801
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
3802
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
3803
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
3804
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
3805
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
3806
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
3807
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
3808
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3809
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3810
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
3811
+ "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
3812
+ "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
3813
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
3814
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
3815
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3816
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
3817
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
3818
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
3819
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3820
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
3821
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
3822
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
3823
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
3824
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
3825
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
3826
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
3827
+ "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
3828
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
3829
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
3830
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
3831
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
3832
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
3833
+ "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
3834
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3835
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
3836
+ "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
3837
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
3838
+ "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
3839
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
3840
+ "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
3841
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
3842
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3843
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
3844
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
3845
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
3846
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3847
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
3848
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3849
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
3850
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
3851
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
3852
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
3853
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
3854
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
3855
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
3856
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3857
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
3858
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
3859
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
3860
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
3861
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
3862
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
3863
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
3864
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
3865
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
3866
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
3867
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
3868
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
3869
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
3870
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
3871
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
3872
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3873
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3874
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
3875
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
3876
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
3877
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
3878
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
3879
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
3880
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
3881
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3882
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
3883
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3884
+ "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
3885
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
3886
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
3887
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
3888
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
3889
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
3890
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
3891
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3892
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
3893
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
3894
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3895
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3896
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3897
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
3898
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
3899
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
3900
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
3901
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
3902
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
3903
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
3904
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
3905
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
3906
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3907
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3908
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3909
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3910
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
3911
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
3912
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
3913
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
3914
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
3915
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
3916
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
3917
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
3918
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3919
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
3920
+ "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
3921
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
3922
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
3923
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
3924
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
3925
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3926
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3927
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
3928
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
3929
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3930
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
3931
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
3932
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
3933
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
3934
+ "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
3935
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
3936
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
3937
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3938
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
3939
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
3940
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3941
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
3942
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
3943
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
3944
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
3945
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
3946
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3947
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
3948
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3949
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3950
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3951
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3952
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
3953
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
3954
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
3955
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
3956
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
3957
+ "will-change"?: import("csstype").Property.WillChange | undefined;
3958
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
3959
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
3960
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
3961
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
3962
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
3963
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
3964
+ "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
3965
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
3966
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
3967
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
3968
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
3969
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
3970
+ "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
3971
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
3972
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
3973
+ "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
3974
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3975
+ "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
3976
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
3977
+ "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
3978
+ "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
3979
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3980
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
3981
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
3982
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
3983
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
3984
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
3985
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
3986
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
3987
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
3988
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
3989
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
3990
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
3991
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
3992
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
3993
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
3994
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
3995
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
3996
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
3997
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
3998
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
3999
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
4000
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
4001
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
4002
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
4003
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
4004
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
4005
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
4006
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
4007
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
4008
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
4009
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
4010
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
4011
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
4012
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
4013
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
4014
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
4015
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
4016
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
4017
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
4018
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
4019
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
4020
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
4021
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
4022
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
4023
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
4024
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
4025
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
4026
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
4027
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
4028
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
4029
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
4030
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
4031
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
4032
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
4033
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
4034
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
4035
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
4036
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
4037
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
4038
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
4039
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
4040
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
4041
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
4042
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
4043
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
4044
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
4045
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
4046
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
4047
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
4048
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
4049
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
4050
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
4051
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
4052
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
4053
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4054
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
4055
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4056
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4057
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
4058
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
4059
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
4060
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
4061
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
4062
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
4063
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
4064
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
4065
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
4066
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
4067
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
4068
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
4069
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
4070
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
4071
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
4072
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
4073
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
4074
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
4075
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
4076
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
4077
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
4078
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
4079
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
4080
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
4081
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
4082
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
4083
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
4084
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
4085
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
4086
+ "-ms-order"?: import("csstype").Property.Order | undefined;
4087
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
4088
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
4089
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
4090
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
4091
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
4092
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
4093
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
4094
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
4095
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
4096
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
4097
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
4098
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
4099
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
4100
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
4101
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
4102
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
4103
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
4104
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
4105
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
4106
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
4107
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
4108
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
4109
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
4110
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
4111
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
4112
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
4113
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
4114
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4115
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4116
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4117
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
4118
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
4119
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
4120
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
4121
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
4122
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
4123
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
4124
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
4125
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
4126
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
4127
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
4128
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
4129
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
4130
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
4131
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
4132
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
4133
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
4134
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
4135
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
4136
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
4137
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
4138
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
4139
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
4140
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
4141
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
4142
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
4143
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
4144
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
4145
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
4146
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
4147
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
4148
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
4149
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
4150
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
4151
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
4152
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
4153
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
4154
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
4155
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
4156
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
4157
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
4158
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
4159
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
4160
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
4161
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
4162
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
4163
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
4164
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
4165
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
4166
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
4167
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
4168
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
4169
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
4170
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
4171
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
4172
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
4173
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
4174
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
4175
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
4176
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
4177
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
4178
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
4179
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
4180
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
4181
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
4182
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
4183
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
4184
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
4185
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
4186
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
4187
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
4188
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
4189
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
4190
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
4191
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
4192
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
4193
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
4194
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
4195
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
4196
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
4197
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
4198
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
4199
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
4200
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
4201
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
4202
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
4203
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
4204
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
4205
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
4206
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
4207
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
4208
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
4209
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
4210
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
4211
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
4212
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
4213
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
4214
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
4215
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
4216
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
4217
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
4218
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
4219
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
4220
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
4221
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
4222
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
4223
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
4224
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
4225
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4226
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
4227
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4228
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4229
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
4230
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
4231
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
4232
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
4233
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
4234
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
4235
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
4236
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
4237
+ "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
4238
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
4239
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
4240
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
4241
+ "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
4242
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
4243
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
4244
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
4245
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
4246
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
4247
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
4248
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
4249
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
4250
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
4251
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
4252
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
4253
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
4254
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
4255
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
4256
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
4257
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
4258
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
4259
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
4260
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
4261
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
4262
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
4263
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
4264
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
4265
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
4266
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
4267
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
4268
+ "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
4269
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
4270
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
4271
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
4272
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
4273
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
4274
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
4275
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
4276
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
4277
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
4278
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
4279
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
4280
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
4281
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
4282
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
4283
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
4284
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
4285
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
4286
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
4287
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
4288
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
4289
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
4290
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
4291
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
4292
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
4293
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
4294
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
4295
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
4296
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
4297
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
4298
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
4299
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
4300
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
4301
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
4302
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
4303
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
4304
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
4305
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
4306
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
4307
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
4308
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
4309
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
4310
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
4311
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
4312
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
4313
+ "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
4314
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
4315
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
4316
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
4317
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
4318
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
4319
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
4320
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
4321
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
4322
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
4323
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
4324
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
4325
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
4326
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
4327
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
4328
+ "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
4329
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
4330
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
4331
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
4332
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
4333
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
4334
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
4335
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
4336
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
4337
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
4338
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
4339
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
4340
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
4341
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
4342
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
4343
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
4344
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
4345
+ "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
4346
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
4347
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
4348
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
4349
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
4350
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
4351
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
4352
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
4353
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
4354
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
4355
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
4356
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
4357
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
4358
+ "-webkit-scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
4359
+ "-webkit-scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
4360
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
4361
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
4362
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
4363
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
4364
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
4365
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
4366
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
4367
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
4368
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
4369
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
4370
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
4371
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
4372
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
4373
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
4374
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
4375
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
4376
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
4377
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
4378
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
4379
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
4380
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
4381
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
4382
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
4383
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
4384
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
4385
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
4386
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
4387
+ }>;
4388
+ layerGroupState: WeakMap<HTMLElement, Set<any>>;
4389
+ getActiveLayers: () => import("vue").ComponentInternalInstance[];
4390
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4391
+ 'update:modelValue': (value: boolean) => true;
4392
+ 'click:complement': (mouseEvent: MouseEvent) => true;
4393
+ afterLeave: () => true;
4394
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4395
+ minWidth: PropType<string | number>;
4396
+ width: PropType<string | number>;
4397
+ maxWidth: PropType<string | number>;
4398
+ minHeight: PropType<string | number>;
4399
+ height: PropType<string | number>;
4400
+ maxHeight: PropType<string | number>;
4401
+ coordinateStrategy: {
4402
+ type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
4403
+ default: string;
4404
+ };
4405
+ position: {
4406
+ type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
4407
+ default: string;
4408
+ };
4409
+ align: {
4410
+ type: PropType<"end" | "start" | "center">;
4411
+ default: string;
4412
+ };
4413
+ origin: {
4414
+ type: StringConstructor;
4415
+ default: string;
4416
+ };
4417
+ offset: {
4418
+ type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
4419
+ };
4420
+ viewportMargin: {
4421
+ type: NumberConstructor;
4422
+ default: number;
4423
+ };
4424
+ transition: {
4425
+ type: PropType<string | (import("vue").TransitionProps & {
4426
+ is?: import("vue").Component | undefined;
4427
+ })>;
4428
+ default: string;
4429
+ };
4430
+ theme: StringConstructor;
4431
+ modelValue: {
4432
+ type: PropType<boolean>;
4433
+ };
4434
+ scrim: {
4435
+ type: PropType<boolean>;
4436
+ };
4437
+ scrimOpacity: {
4438
+ type: PropType<number>;
4439
+ };
4440
+ eager: {
4441
+ type: PropType<boolean>;
4442
+ };
4443
+ classes: {
4444
+ type: PropType<string | string[] | Record<string, any>>;
4445
+ };
4446
+ contentClasses: {
4447
+ type: PropType<string | string[] | Record<string, any>>;
4448
+ };
4449
+ closeClickScrim: {
4450
+ type: PropType<boolean>;
4451
+ };
4452
+ contentStyles: {
4453
+ type: PropType<import("vue").CSSProperties>;
4454
+ default: () => void;
4455
+ };
4456
+ disabled: {
4457
+ type: PropType<boolean>;
4458
+ default: boolean;
4459
+ };
4460
+ openOnHover: {
4461
+ type: PropType<boolean>;
4462
+ default: boolean;
4463
+ };
4464
+ openDelay: {
4465
+ type: PropType<number>;
4466
+ default: number;
4467
+ };
4468
+ closeDelay: {
4469
+ type: PropType<number>;
4470
+ default: number;
4471
+ };
4472
+ modal: PropType<boolean>;
4473
+ }>> & {
4474
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4475
+ onAfterLeave?: (() => any) | undefined;
4476
+ "onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
4477
+ }, {
4478
+ disabled: boolean;
4479
+ contentStyles: import("vue").CSSProperties;
4480
+ openOnHover: boolean;
4481
+ openDelay: number;
4482
+ closeDelay: number;
4483
+ coordinateStrategy: "levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn;
4484
+ position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
4485
+ align: "end" | "start" | "center";
4486
+ origin: string;
4487
+ viewportMargin: number;
4488
+ transition: string | (import("vue").TransitionProps & {
4489
+ is?: import("vue").Component | undefined;
4490
+ });
4491
+ }, SlotsType<{
4492
+ base: any;
4493
+ default: any;
4494
+ }>> | undefined>;
4495
+ baseEl: import("vue").ComputedRef<any>;
4496
+ classes: import("vue").ComputedRef<{
4497
+ 'y-menu': boolean;
4498
+ }>;
4499
+ }> & {} & import("vue").ComponentCustomProperties & {}) | undefined>;
593
4500
  baseEl: import("vue").ComputedRef<any>;
594
4501
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
595
4502
  'update:modelValue': (value: any) => boolean;
@@ -712,6 +4619,14 @@ export declare const YSelect: import("vue").DefineComponent<{
712
4619
  expandIcon: {
713
4620
  type: ObjectConstructor;
714
4621
  };
4622
+ openDelay: {
4623
+ type: PropType<number>;
4624
+ default: number;
4625
+ };
4626
+ closeDelay: {
4627
+ type: PropType<number>;
4628
+ default: number;
4629
+ };
715
4630
  }>> & {
716
4631
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
717
4632
  "onUpdate:opened"?: ((opened: boolean) => any) | undefined;
@@ -725,6 +4640,8 @@ export declare const YSelect: import("vue").DefineComponent<{
725
4640
  floated: boolean;
726
4641
  focused: boolean;
727
4642
  tabindex: string;
4643
+ openDelay: number;
4644
+ closeDelay: number;
728
4645
  position: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
729
4646
  align: "end" | "start" | "center";
730
4647
  origin: string;
@@ -751,5 +4668,6 @@ export declare const YSelect: import("vue").DefineComponent<{
751
4668
  item: {
752
4669
  item: any;
753
4670
  selected: boolean;
4671
+ select: () => void;
754
4672
  };
755
4673
  }>>;