@gem-sdk/core 1.48.0-dev.5 → 1.48.0-dev.50

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.
@@ -7187,6 +7187,11 @@ type InputControlType<T> = SharedControlType<T> & {
7187
7187
  action?: {
7188
7188
  clear?: boolean;
7189
7189
  };
7190
+ actionChangeControls?: {
7191
+ controlID: string;
7192
+ condition?: string;
7193
+ newValue: any;
7194
+ }[];
7190
7195
  };
7191
7196
 
7192
7197
  type InputFixContentControlType<T> = SharedControlType<T> & {
@@ -7329,6 +7334,7 @@ type Option$2<T> = {
7329
7334
  tooltip?: string;
7330
7335
  type?: string;
7331
7336
  note?: string;
7337
+ maxOption?: number;
7332
7338
  };
7333
7339
  type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7334
7340
  id: K;
@@ -7383,6 +7389,7 @@ type TextareaControlType<T> = SharedControlType<T> & {
7383
7389
  readonly?: boolean;
7384
7390
  minHeight?: number;
7385
7391
  maxWidth?: number;
7392
+ inputClass?: string;
7386
7393
  autoHeight?: boolean;
7387
7394
  defaultRows?: number;
7388
7395
  showPlusBtn?: boolean;
@@ -8026,8 +8033,79 @@ type ShapeSelectorControlType<T> = SharedControlType<T> & {
8026
8033
  type: 'shape-selector';
8027
8034
  };
8028
8035
 
8036
+ declare enum CompareType {
8037
+ EXACT = "exact",
8038
+ ABOVE = "above",
8039
+ BELOW = "below",
8040
+ EXACT_OR_ABOVE = "exact_or_above",
8041
+ EXACT_OR_BELOW = "exact_or_below",
8042
+ BETWEEN = "between"
8043
+ }
8044
+ declare enum TriggerType {
8045
+ INVENTORY_STATUS = "inventory_status",
8046
+ DISCOUNT_PRICE = "discount_price",
8047
+ PRICE_RANGE = "price_range",
8048
+ PRODUCT_TAGS = "product_tags",
8049
+ CREATION_DATE = "creation_date"
8050
+ }
8051
+ declare enum InventoryStatus {
8052
+ IN_STOCK = "in_stock",
8053
+ OUT_OF_STOCK = "out_of_stock"
8054
+ }
8055
+ declare enum CreationDateType {
8056
+ DURATION = "duration",
8057
+ EXACT_DATE = "exact_date",
8058
+ BETWEEN_DATES = "between_dates"
8059
+ }
8060
+ declare enum DiscountType {
8061
+ PERCENT = "percent",
8062
+ FIXED = "fixed"
8063
+ }
8064
+ type InventoryStatusTrigger = {
8065
+ triggerEvent: TriggerType.INVENTORY_STATUS;
8066
+ type: InventoryStatus;
8067
+ quantityType: CompareType;
8068
+ from: string;
8069
+ to?: string;
8070
+ priority: number;
8071
+ conditionType?: CompareType;
8072
+ };
8073
+ type DiscountPriceTrigger = {
8074
+ triggerEvent: TriggerType.DISCOUNT_PRICE;
8075
+ type: CompareType;
8076
+ amount?: string;
8077
+ from?: string;
8078
+ to?: string;
8079
+ priority: number;
8080
+ conditionType?: CompareType;
8081
+ discountType?: DiscountType;
8082
+ };
8083
+ type PriceRangeTrigger = {
8084
+ triggerEvent: TriggerType.PRICE_RANGE;
8085
+ from: string;
8086
+ to: string;
8087
+ priority: number;
8088
+ conditionType?: CompareType;
8089
+ };
8090
+ type CreationDateTrigger = {
8091
+ triggerEvent: TriggerType.CREATION_DATE;
8092
+ type: CreationDateType;
8093
+ days: string;
8094
+ from: string;
8095
+ to: string;
8096
+ priority: number;
8097
+ conditionType?: CompareType;
8098
+ };
8099
+ type ProductTagTrigger = {
8100
+ triggerEvent: TriggerType.PRODUCT_TAGS;
8101
+ searchTag: string[];
8102
+ priority: number;
8103
+ conditionType?: CompareType;
8104
+ };
8105
+ type TDisplayTrigger = InventoryStatusTrigger | DiscountPriceTrigger | PriceRangeTrigger | ProductTagTrigger | CreationDateTrigger;
8029
8106
  type DisplayTriggerControlType<T> = SharedControlType<T> & {
8030
8107
  type: 'display-trigger-badge';
8108
+ default: TDisplayTrigger[];
8031
8109
  };
8032
8110
 
8033
8111
  type CustomPositionControlType<T> = SharedControlType<T> & {
@@ -8054,6 +8132,87 @@ type SelectProductBundleControlType<T> = SharedControlType<T> & {
8054
8132
  hide?: boolean;
8055
8133
  };
8056
8134
 
8135
+ type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
8136
+ type LangKey = 'en' | 'vi';
8137
+ type LabelWithLang = {
8138
+ [P in keyof Record<LangKey, ''>]?: string;
8139
+ };
8140
+ type SettingMediaType = 'image' | 'youtubeVideoID';
8141
+ type SettingUIHelpType = {
8142
+ content: string;
8143
+ buttonLink?: string;
8144
+ media?: {
8145
+ value: string;
8146
+ type: SettingMediaType;
8147
+ };
8148
+ };
8149
+ type LinkWithSetting = {
8150
+ name: string;
8151
+ state?: string;
8152
+ field?: string;
8153
+ };
8154
+ type ControlConfig = ControlProp<any> & {
8155
+ linkWithSetting?: LinkWithSetting;
8156
+ };
8157
+ type SettingUIControl = {
8158
+ id?: string;
8159
+ controlConfig?: ControlConfig;
8160
+ isCompo?: boolean;
8161
+ layout?: 'vertical' | 'horizontal';
8162
+ toggleGroupId?: string;
8163
+ label?: LabelWithLang;
8164
+ conditionDisplay?: string;
8165
+ conditionEnable?: string;
8166
+ options?: {
8167
+ hideOnDevices?: Record<NameDevices$1, boolean>;
8168
+ fullWidth?: boolean;
8169
+ disableMessage?: string;
8170
+ };
8171
+ setting?: {
8172
+ id: string;
8173
+ state?: SettingStateType;
8174
+ };
8175
+ searchKeyword?: string;
8176
+ } & SettingUICompo;
8177
+ type SettingUICompo = {
8178
+ controls?: SettingUIControl[];
8179
+ iconName?: string;
8180
+ getValueFromSettingID?: string;
8181
+ fixedValue?: string;
8182
+ placeholder?: string;
8183
+ help?: SettingUIHelpType;
8184
+ };
8185
+ type SettingUIMoreSetting = {
8186
+ label?: LabelWithLang;
8187
+ labelAction?: LabelWithLang;
8188
+ controls?: SettingUIControl[];
8189
+ help?: SettingUIHelpType;
8190
+ };
8191
+ type SettingUIToggleGroup = {
8192
+ label?: LabelWithLang;
8193
+ id?: string;
8194
+ controls?: SettingUIControl[];
8195
+ };
8196
+ type SettingUIToggleSettings = {
8197
+ type: 'control' | 'toggleGroup';
8198
+ controls?: SettingUIControl[];
8199
+ isActiveDefault?: boolean;
8200
+ } & SettingUIControl & SettingUIToggleGroup;
8201
+ type SettingUIGroup = {
8202
+ label?: LabelWithLang;
8203
+ message?: string;
8204
+ disableToggle?: boolean;
8205
+ conditionDisplay?: string;
8206
+ conditionEnable?: string;
8207
+ controls?: SettingUIControl[];
8208
+ moreSettings?: SettingUIMoreSetting;
8209
+ toggleSettings?: SettingUIToggleSettings[];
8210
+ help?: SettingUIHelpType;
8211
+ options?: {
8212
+ disableMessage?: string;
8213
+ };
8214
+ };
8215
+
8057
8216
  type ControlProp<T> = ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | CustomPositionControlType<T> | SneakPeakControlType<T> | PostPurchaseTextareaControlType<T> | DealControlType<T> | DisplayTriggerControlType<T>;
8058
8217
  type ControlTriggerAction = {
8059
8218
  controlId: string;
@@ -8125,6 +8284,7 @@ type ComponentSetting<P extends BaseProps> = {
8125
8284
  };
8126
8285
  };
8127
8286
  ui?: ControlUI[];
8287
+ uiV2?: SettingUIGroup[];
8128
8288
  presets?: ComponentPreset[];
8129
8289
  locales?: Record<string, any>;
8130
8290
  };
@@ -28409,6 +28569,7 @@ type TypographyProps = {
28409
28569
  fallbackFontFamily?: string;
28410
28570
  textShadow?: ShadowProps;
28411
28571
  hasShadowText?: boolean;
28572
+ isCustom?: boolean;
28412
28573
  };
28413
28574
  type TypographyV2Props = Omit<TypographyProps, 'fontSize' | 'lineHeight'> & {
28414
28575
  fontSize?: ObjectDevices<string>;
@@ -28817,7 +28978,7 @@ type ProductListProviderProps = ProductListContextProps & {
28817
28978
  declare const ProductListProvider: React.FC<ProductListProviderProps>;
28818
28979
  declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
28819
28980
 
28820
- type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
28981
+ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
28821
28982
  collections?: Maybe$1<{
28822
28983
  edges: Array<{
28823
28984
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
@@ -29181,6 +29342,7 @@ type PublishedThemePagesQueryResponse = {
29181
29342
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
29182
29343
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
29183
29344
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
29345
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
29184
29346
  }>>>;
29185
29347
  };
29186
29348
  declare const PublishedThemePagesDocument: string;
@@ -29258,6 +29420,7 @@ type PreviewPageQueryResponse = {
29258
29420
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
29259
29421
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
29260
29422
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
29423
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
29261
29424
  }>;
29262
29425
  };
29263
29426
  declare const PreviewPageDocument: string;
@@ -29877,6 +30040,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
29877
30040
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
29878
30041
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
29879
30042
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
30043
+ '--gr'?: csstype.Property.GridRow | undefined;
30044
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
30045
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
30046
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
30047
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
30048
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
30049
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
30050
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
30051
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
29880
30052
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
29881
30053
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
29882
30054
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -31381,6 +31553,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
31381
31553
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31382
31554
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31383
31555
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31556
+ '--gr'?: csstype.Property.GridRow | undefined;
31557
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
31558
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
31559
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
31560
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
31561
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
31562
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
31563
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
31564
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
31384
31565
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
31385
31566
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
31386
31567
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -32885,6 +33066,15 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
32885
33066
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
32886
33067
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
32887
33068
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
33069
+ '--gr'?: csstype.Property.GridRow | undefined;
33070
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
33071
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
33072
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
33073
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
33074
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
33075
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
33076
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
33077
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
32888
33078
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
32889
33079
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
32890
33080
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -34389,6 +34579,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
34389
34579
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34390
34580
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34391
34581
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34582
+ '--gr'?: csstype.Property.GridRow | undefined;
34583
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
34584
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
34585
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
34586
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
34587
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
34588
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
34589
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
34590
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
34392
34591
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
34393
34592
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
34394
34593
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -35664,10 +35863,1525 @@ declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
35664
35863
  declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
35665
35864
 
35666
35865
  declare const parseValueWithUnit: (valueWithUnit: string) => any;
35667
- declare const getStyleShadow: (shadowStyle: ShadowStyle, isActiveState?: boolean) => {
35866
+ declare const getStyleShadow: (shadowStyle: ShadowStyle & {
35867
+ screen?: string;
35868
+ }, isActiveState?: boolean) => {
35668
35869
  [x: string]: string;
35669
35870
  };
35670
- declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>) => React.CSSProperties;
35871
+ declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
35872
+ declare const getResonsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
35873
+ [x: string]: any;
35874
+ '--ai'?: csstype.Property.AlignItems | undefined;
35875
+ '--hvr-ai'?: csstype.Property.AlignItems | undefined;
35876
+ '--focus-ai'?: csstype.Property.AlignItems | undefined;
35877
+ '--ai-tablet'?: csstype.Property.AlignItems | undefined;
35878
+ '--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
35879
+ '--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
35880
+ '--ai-mobile'?: csstype.Property.AlignItems | undefined;
35881
+ '--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
35882
+ '--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
35883
+ '--aspect'?: csstype.Property.AspectRatio | undefined;
35884
+ '--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
35885
+ '--focus-aspect'?: csstype.Property.AspectRatio | undefined;
35886
+ '--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
35887
+ '--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
35888
+ '--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
35889
+ '--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
35890
+ '--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
35891
+ '--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
35892
+ '--bg'?: csstype.Property.Background<string | number> | undefined;
35893
+ '--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
35894
+ '--focus-bg'?: csstype.Property.Background<string | number> | undefined;
35895
+ '--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
35896
+ '--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
35897
+ '--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
35898
+ '--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
35899
+ '--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
35900
+ '--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
35901
+ '--bga'?: csstype.Property.BackgroundAttachment | undefined;
35902
+ '--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
35903
+ '--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
35904
+ '--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
35905
+ '--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
35906
+ '--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
35907
+ '--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
35908
+ '--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
35909
+ '--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
35910
+ '--bgc'?: csstype.Property.BackgroundColor | undefined;
35911
+ '--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
35912
+ '--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
35913
+ '--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
35914
+ '--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
35915
+ '--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
35916
+ '--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
35917
+ '--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
35918
+ '--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
35919
+ '--bgi'?: csstype.Property.BackgroundImage | undefined;
35920
+ '--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
35921
+ '--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
35922
+ '--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
35923
+ '--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
35924
+ '--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
35925
+ '--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
35926
+ '--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
35927
+ '--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
35928
+ '--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35929
+ '--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35930
+ '--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35931
+ '--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35932
+ '--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35933
+ '--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35934
+ '--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35935
+ '--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35936
+ '--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35937
+ '--bgr'?: csstype.Property.BackgroundRepeat | undefined;
35938
+ '--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
35939
+ '--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
35940
+ '--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
35941
+ '--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
35942
+ '--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
35943
+ '--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
35944
+ '--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
35945
+ '--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
35946
+ '--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
35947
+ '--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
35948
+ '--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
35949
+ '--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
35950
+ '--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
35951
+ '--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
35952
+ '--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
35953
+ '--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
35954
+ '--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
35955
+ '--b'?: csstype.Property.Border<string | number> | undefined;
35956
+ '--hvr-b'?: csstype.Property.Border<string | number> | undefined;
35957
+ '--focus-b'?: csstype.Property.Border<string | number> | undefined;
35958
+ '--b-tablet'?: csstype.Property.Border<string | number> | undefined;
35959
+ '--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
35960
+ '--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
35961
+ '--b-mobile'?: csstype.Property.Border<string | number> | undefined;
35962
+ '--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
35963
+ '--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
35964
+ '--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
35965
+ '--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
35966
+ '--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
35967
+ '--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
35968
+ '--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
35969
+ '--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
35970
+ '--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
35971
+ '--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
35972
+ '--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
35973
+ '--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35974
+ '--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35975
+ '--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35976
+ '--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35977
+ '--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35978
+ '--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35979
+ '--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35980
+ '--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35981
+ '--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
35982
+ '--bbc'?: csstype.Property.BorderBottomColor | undefined;
35983
+ '--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
35984
+ '--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
35985
+ '--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
35986
+ '--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
35987
+ '--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
35988
+ '--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
35989
+ '--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
35990
+ '--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
35991
+ '--bc'?: csstype.Property.BorderColor | undefined;
35992
+ '--hvr-bc'?: csstype.Property.BorderColor | undefined;
35993
+ '--focus-bc'?: csstype.Property.BorderColor | undefined;
35994
+ '--bc-tablet'?: csstype.Property.BorderColor | undefined;
35995
+ '--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
35996
+ '--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
35997
+ '--bc-mobile'?: csstype.Property.BorderColor | undefined;
35998
+ '--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
35999
+ '--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
36000
+ '--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36001
+ '--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36002
+ '--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36003
+ '--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36004
+ '--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36005
+ '--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36006
+ '--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36007
+ '--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36008
+ '--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36009
+ '--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36010
+ '--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36011
+ '--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36012
+ '--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36013
+ '--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36014
+ '--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36015
+ '--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36016
+ '--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36017
+ '--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36018
+ '--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
36019
+ '--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
36020
+ '--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
36021
+ '--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
36022
+ '--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
36023
+ '--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
36024
+ '--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
36025
+ '--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
36026
+ '--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
36027
+ '--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
36028
+ '--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
36029
+ '--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
36030
+ '--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
36031
+ '--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
36032
+ '--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
36033
+ '--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
36034
+ '--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
36035
+ '--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
36036
+ '--br'?: csstype.Property.BorderRight<string | number> | undefined;
36037
+ '--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
36038
+ '--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
36039
+ '--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
36040
+ '--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
36041
+ '--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
36042
+ '--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
36043
+ '--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
36044
+ '--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
36045
+ '--bs'?: csstype.Property.BorderStyle | undefined;
36046
+ '--hvr-bs'?: csstype.Property.BorderStyle | undefined;
36047
+ '--focus-bs'?: csstype.Property.BorderStyle | undefined;
36048
+ '--bs-tablet'?: csstype.Property.BorderStyle | undefined;
36049
+ '--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
36050
+ '--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
36051
+ '--bs-mobile'?: csstype.Property.BorderStyle | undefined;
36052
+ '--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
36053
+ '--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
36054
+ '--bt'?: csstype.Property.BorderTop<string | number> | undefined;
36055
+ '--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
36056
+ '--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
36057
+ '--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
36058
+ '--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
36059
+ '--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
36060
+ '--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
36061
+ '--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
36062
+ '--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
36063
+ '--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36064
+ '--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36065
+ '--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36066
+ '--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36067
+ '--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36068
+ '--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36069
+ '--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36070
+ '--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36071
+ '--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36072
+ '--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36073
+ '--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36074
+ '--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36075
+ '--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36076
+ '--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36077
+ '--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36078
+ '--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36079
+ '--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36080
+ '--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36081
+ '--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
36082
+ '--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
36083
+ '--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
36084
+ '--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
36085
+ '--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
36086
+ '--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
36087
+ '--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
36088
+ '--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
36089
+ '--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
36090
+ '--bottom'?: csstype.Property.Bottom<string | number> | undefined;
36091
+ '--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
36092
+ '--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
36093
+ '--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
36094
+ '--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
36095
+ '--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
36096
+ '--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
36097
+ '--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
36098
+ '--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
36099
+ '--shadow'?: csstype.Property.BoxShadow | undefined;
36100
+ '--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
36101
+ '--focus-shadow'?: csstype.Property.BoxShadow | undefined;
36102
+ '--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
36103
+ '--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
36104
+ '--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
36105
+ '--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
36106
+ '--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
36107
+ '--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
36108
+ '--c'?: csstype.Property.Color | undefined;
36109
+ '--hvr-c'?: csstype.Property.Color | undefined;
36110
+ '--focus-c'?: csstype.Property.Color | undefined;
36111
+ '--c-tablet'?: csstype.Property.Color | undefined;
36112
+ '--hvr-c-tablet'?: csstype.Property.Color | undefined;
36113
+ '--focus-c-tablet'?: csstype.Property.Color | undefined;
36114
+ '--c-mobile'?: csstype.Property.Color | undefined;
36115
+ '--hvr-c-mobile'?: csstype.Property.Color | undefined;
36116
+ '--focus-c-mobile'?: csstype.Property.Color | undefined;
36117
+ '--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
36118
+ '--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
36119
+ '--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
36120
+ '--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
36121
+ '--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
36122
+ '--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
36123
+ '--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
36124
+ '--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
36125
+ '--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
36126
+ '--d'?: csstype.Property.Display | undefined;
36127
+ '--hvr-d'?: csstype.Property.Display | undefined;
36128
+ '--focus-d'?: csstype.Property.Display | undefined;
36129
+ '--d-tablet'?: csstype.Property.Display | undefined;
36130
+ '--hvr-d-tablet'?: csstype.Property.Display | undefined;
36131
+ '--focus-d-tablet'?: csstype.Property.Display | undefined;
36132
+ '--d-mobile'?: csstype.Property.Display | undefined;
36133
+ '--hvr-d-mobile'?: csstype.Property.Display | undefined;
36134
+ '--focus-d-mobile'?: csstype.Property.Display | undefined;
36135
+ '--fd'?: csstype.Property.FlexDirection | undefined;
36136
+ '--hvr-fd'?: csstype.Property.FlexDirection | undefined;
36137
+ '--focus-fd'?: csstype.Property.FlexDirection | undefined;
36138
+ '--fd-tablet'?: csstype.Property.FlexDirection | undefined;
36139
+ '--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
36140
+ '--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
36141
+ '--fd-mobile'?: csstype.Property.FlexDirection | undefined;
36142
+ '--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
36143
+ '--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
36144
+ '--ff'?: csstype.Property.FontFamily | undefined;
36145
+ '--hvr-ff'?: csstype.Property.FontFamily | undefined;
36146
+ '--focus-ff'?: csstype.Property.FontFamily | undefined;
36147
+ '--ff-tablet'?: csstype.Property.FontFamily | undefined;
36148
+ '--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
36149
+ '--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
36150
+ '--ff-mobile'?: csstype.Property.FontFamily | undefined;
36151
+ '--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
36152
+ '--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
36153
+ '--size'?: csstype.Property.FontSize<string | number> | undefined;
36154
+ '--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
36155
+ '--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
36156
+ '--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
36157
+ '--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
36158
+ '--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
36159
+ '--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
36160
+ '--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
36161
+ '--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
36162
+ '--weight'?: csstype.Property.FontWeight | undefined;
36163
+ '--hvr-weight'?: csstype.Property.FontWeight | undefined;
36164
+ '--focus-weight'?: csstype.Property.FontWeight | undefined;
36165
+ '--weight-tablet'?: csstype.Property.FontWeight | undefined;
36166
+ '--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
36167
+ '--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
36168
+ '--weight-mobile'?: csstype.Property.FontWeight | undefined;
36169
+ '--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
36170
+ '--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
36171
+ '--fs'?: csstype.Property.FontStyle | undefined;
36172
+ '--hvr-fs'?: csstype.Property.FontStyle | undefined;
36173
+ '--focus-fs'?: csstype.Property.FontStyle | undefined;
36174
+ '--fs-tablet'?: csstype.Property.FontStyle | undefined;
36175
+ '--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
36176
+ '--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
36177
+ '--fs-mobile'?: csstype.Property.FontStyle | undefined;
36178
+ '--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
36179
+ '--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
36180
+ '--gg'?: csstype.Property.GridGap<string | number> | undefined;
36181
+ '--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
36182
+ '--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
36183
+ '--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
36184
+ '--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
36185
+ '--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
36186
+ '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36187
+ '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36188
+ '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36189
+ '--gr'?: csstype.Property.GridRow | undefined;
36190
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
36191
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
36192
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
36193
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
36194
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
36195
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
36196
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
36197
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
36198
+ '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36199
+ '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36200
+ '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36201
+ '--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36202
+ '--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36203
+ '--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36204
+ '--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36205
+ '--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36206
+ '--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36207
+ '--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36208
+ '--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36209
+ '--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36210
+ '--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36211
+ '--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36212
+ '--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36213
+ '--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36214
+ '--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36215
+ '--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36216
+ '--h'?: csstype.Property.Height<string | number> | undefined;
36217
+ '--hvr-h'?: csstype.Property.Height<string | number> | undefined;
36218
+ '--focus-h'?: csstype.Property.Height<string | number> | undefined;
36219
+ '--h-tablet'?: csstype.Property.Height<string | number> | undefined;
36220
+ '--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
36221
+ '--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
36222
+ '--h-mobile'?: csstype.Property.Height<string | number> | undefined;
36223
+ '--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
36224
+ '--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
36225
+ '--jc'?: csstype.Property.JustifyContent | undefined;
36226
+ '--hvr-jc'?: csstype.Property.JustifyContent | undefined;
36227
+ '--focus-jc'?: csstype.Property.JustifyContent | undefined;
36228
+ '--jc-tablet'?: csstype.Property.JustifyContent | undefined;
36229
+ '--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
36230
+ '--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
36231
+ '--jc-mobile'?: csstype.Property.JustifyContent | undefined;
36232
+ '--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
36233
+ '--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
36234
+ '--left'?: csstype.Property.Left<string | number> | undefined;
36235
+ '--hvr-left'?: csstype.Property.Left<string | number> | undefined;
36236
+ '--focus-left'?: csstype.Property.Left<string | number> | undefined;
36237
+ '--left-tablet'?: csstype.Property.Left<string | number> | undefined;
36238
+ '--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
36239
+ '--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
36240
+ '--left-mobile'?: csstype.Property.Left<string | number> | undefined;
36241
+ '--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
36242
+ '--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
36243
+ '--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
36244
+ '--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
36245
+ '--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
36246
+ '--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
36247
+ '--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
36248
+ '--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
36249
+ '--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
36250
+ '--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
36251
+ '--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
36252
+ '--line-clamp'?: any;
36253
+ '--hvr-line-clamp'?: any;
36254
+ '--focus-line-clamp'?: any;
36255
+ '--line-clamp-tablet'?: any;
36256
+ '--hvr-line-clamp-tablet'?: any;
36257
+ '--focus-line-clamp-tablet'?: any;
36258
+ '--line-clamp-mobile'?: any;
36259
+ '--hvr-line-clamp-mobile'?: any;
36260
+ '--focus-line-clamp-mobile'?: any;
36261
+ '--lh'?: csstype.Property.LineHeight<string | number> | undefined;
36262
+ '--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
36263
+ '--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
36264
+ '--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
36265
+ '--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
36266
+ '--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
36267
+ '--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
36268
+ '--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
36269
+ '--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
36270
+ '--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36271
+ '--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36272
+ '--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36273
+ '--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36274
+ '--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36275
+ '--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36276
+ '--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36277
+ '--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36278
+ '--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36279
+ '--tdc'?: csstype.Property.TextDecorationColor | undefined;
36280
+ '--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
36281
+ '--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
36282
+ '--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
36283
+ '--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
36284
+ '--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
36285
+ '--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
36286
+ '--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
36287
+ '--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
36288
+ '--tdl'?: csstype.Property.TextDecorationLine | undefined;
36289
+ '--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
36290
+ '--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
36291
+ '--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
36292
+ '--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
36293
+ '--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
36294
+ '--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
36295
+ '--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
36296
+ '--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
36297
+ '--m'?: csstype.Property.Margin<string | number> | undefined;
36298
+ '--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
36299
+ '--focus-m'?: csstype.Property.Margin<string | number> | undefined;
36300
+ '--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
36301
+ '--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
36302
+ '--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
36303
+ '--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
36304
+ '--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
36305
+ '--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
36306
+ '--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
36307
+ '--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
36308
+ '--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
36309
+ '--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
36310
+ '--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
36311
+ '--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
36312
+ '--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
36313
+ '--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
36314
+ '--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
36315
+ '--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
36316
+ '--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
36317
+ '--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
36318
+ '--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
36319
+ '--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
36320
+ '--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
36321
+ '--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
36322
+ '--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
36323
+ '--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
36324
+ '--mr'?: csstype.Property.MarginRight<string | number> | undefined;
36325
+ '--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
36326
+ '--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
36327
+ '--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
36328
+ '--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
36329
+ '--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
36330
+ '--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
36331
+ '--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
36332
+ '--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
36333
+ '--mt'?: csstype.Property.MarginTop<string | number> | undefined;
36334
+ '--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
36335
+ '--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
36336
+ '--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
36337
+ '--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
36338
+ '--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
36339
+ '--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
36340
+ '--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
36341
+ '--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
36342
+ '--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
36343
+ '--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
36344
+ '--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
36345
+ '--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
36346
+ '--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
36347
+ '--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
36348
+ '--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
36349
+ '--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
36350
+ '--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
36351
+ '--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
36352
+ '--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
36353
+ '--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
36354
+ '--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
36355
+ '--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
36356
+ '--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
36357
+ '--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
36358
+ '--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
36359
+ '--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
36360
+ '--minh'?: csstype.Property.MinHeight<string | number> | undefined;
36361
+ '--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
36362
+ '--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
36363
+ '--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
36364
+ '--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
36365
+ '--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
36366
+ '--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
36367
+ '--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
36368
+ '--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
36369
+ '--minw'?: csstype.Property.MinWidth<string | number> | undefined;
36370
+ '--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
36371
+ '--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
36372
+ '--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
36373
+ '--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
36374
+ '--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
36375
+ '--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
36376
+ '--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
36377
+ '--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
36378
+ '--objf'?: csstype.Property.ObjectFit | undefined;
36379
+ '--hvr-objf'?: csstype.Property.ObjectFit | undefined;
36380
+ '--focus-objf'?: csstype.Property.ObjectFit | undefined;
36381
+ '--objf-tablet'?: csstype.Property.ObjectFit | undefined;
36382
+ '--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
36383
+ '--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
36384
+ '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
36385
+ '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
36386
+ '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
36387
+ '--op'?: csstype.Property.Opacity | undefined;
36388
+ '--hvr-op'?: csstype.Property.Opacity | undefined;
36389
+ '--focus-op'?: csstype.Property.Opacity | undefined;
36390
+ '--op-tablet'?: csstype.Property.Opacity | undefined;
36391
+ '--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
36392
+ '--focus-op-tablet'?: csstype.Property.Opacity | undefined;
36393
+ '--op-mobile'?: csstype.Property.Opacity | undefined;
36394
+ '--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
36395
+ '--focus-op-mobile'?: csstype.Property.Opacity | undefined;
36396
+ '--o'?: csstype.Property.Order | undefined;
36397
+ '--hvr-o'?: csstype.Property.Order | undefined;
36398
+ '--focus-o'?: csstype.Property.Order | undefined;
36399
+ '--o-tablet'?: csstype.Property.Order | undefined;
36400
+ '--hvr-o-tablet'?: csstype.Property.Order | undefined;
36401
+ '--focus-o-tablet'?: csstype.Property.Order | undefined;
36402
+ '--o-mobile'?: csstype.Property.Order | undefined;
36403
+ '--hvr-o-mobile'?: csstype.Property.Order | undefined;
36404
+ '--focus-o-mobile'?: csstype.Property.Order | undefined;
36405
+ '--pc'?: csstype.Property.PlaceContent | undefined;
36406
+ '--hvr-pc'?: csstype.Property.PlaceContent | undefined;
36407
+ '--focus-pc'?: csstype.Property.PlaceContent | undefined;
36408
+ '--pc-tablet'?: csstype.Property.PlaceContent | undefined;
36409
+ '--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
36410
+ '--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
36411
+ '--pc-mobile'?: csstype.Property.PlaceContent | undefined;
36412
+ '--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
36413
+ '--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
36414
+ '--p'?: csstype.Property.Padding<string | number> | undefined;
36415
+ '--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
36416
+ '--focus-p'?: csstype.Property.Padding<string | number> | undefined;
36417
+ '--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
36418
+ '--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
36419
+ '--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
36420
+ '--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
36421
+ '--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
36422
+ '--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
36423
+ '--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
36424
+ '--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
36425
+ '--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
36426
+ '--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
36427
+ '--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
36428
+ '--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
36429
+ '--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
36430
+ '--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
36431
+ '--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
36432
+ '--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
36433
+ '--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
36434
+ '--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
36435
+ '--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
36436
+ '--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
36437
+ '--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
36438
+ '--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
36439
+ '--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
36440
+ '--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
36441
+ '--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
36442
+ '--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
36443
+ '--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
36444
+ '--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
36445
+ '--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
36446
+ '--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
36447
+ '--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
36448
+ '--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
36449
+ '--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
36450
+ '--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
36451
+ '--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
36452
+ '--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
36453
+ '--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
36454
+ '--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
36455
+ '--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
36456
+ '--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
36457
+ '--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
36458
+ '--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
36459
+ '--pe'?: csstype.Property.PointerEvents | undefined;
36460
+ '--hvr-pe'?: csstype.Property.PointerEvents | undefined;
36461
+ '--focus-pe'?: csstype.Property.PointerEvents | undefined;
36462
+ '--pe-tablet'?: csstype.Property.PointerEvents | undefined;
36463
+ '--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
36464
+ '--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
36465
+ '--pe-mobile'?: csstype.Property.PointerEvents | undefined;
36466
+ '--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
36467
+ '--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
36468
+ '--pos'?: csstype.Property.Position | undefined;
36469
+ '--hvr-pos'?: csstype.Property.Position | undefined;
36470
+ '--focus-pos'?: csstype.Property.Position | undefined;
36471
+ '--pos-tablet'?: csstype.Property.Position | undefined;
36472
+ '--hvr-pos-tablet'?: csstype.Property.Position | undefined;
36473
+ '--focus-pos-tablet'?: csstype.Property.Position | undefined;
36474
+ '--pos-mobile'?: csstype.Property.Position | undefined;
36475
+ '--hvr-pos-mobile'?: csstype.Property.Position | undefined;
36476
+ '--focus-pos-mobile'?: csstype.Property.Position | undefined;
36477
+ '--right'?: csstype.Property.Right<string | number> | undefined;
36478
+ '--hvr-right'?: csstype.Property.Right<string | number> | undefined;
36479
+ '--focus-right'?: csstype.Property.Right<string | number> | undefined;
36480
+ '--right-tablet'?: csstype.Property.Right<string | number> | undefined;
36481
+ '--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
36482
+ '--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
36483
+ '--right-mobile'?: csstype.Property.Right<string | number> | undefined;
36484
+ '--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
36485
+ '--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
36486
+ '--rg'?: csstype.Property.RowGap<string | number> | undefined;
36487
+ '--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
36488
+ '--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
36489
+ '--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
36490
+ '--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
36491
+ '--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
36492
+ '--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
36493
+ '--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
36494
+ '--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
36495
+ '--ta'?: csstype.Property.TextAlign | undefined;
36496
+ '--hvr-ta'?: csstype.Property.TextAlign | undefined;
36497
+ '--focus-ta'?: csstype.Property.TextAlign | undefined;
36498
+ '--ta-tablet'?: csstype.Property.TextAlign | undefined;
36499
+ '--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
36500
+ '--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
36501
+ '--ta-mobile'?: csstype.Property.TextAlign | undefined;
36502
+ '--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
36503
+ '--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
36504
+ '--ts'?: csstype.Property.TextShadow | undefined;
36505
+ '--hvr-ts'?: csstype.Property.TextShadow | undefined;
36506
+ '--focus-ts'?: csstype.Property.TextShadow | undefined;
36507
+ '--ts-tablet'?: csstype.Property.TextShadow | undefined;
36508
+ '--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
36509
+ '--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
36510
+ '--ts-mobile'?: csstype.Property.TextShadow | undefined;
36511
+ '--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
36512
+ '--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
36513
+ '--tt'?: csstype.Property.TextTransform | undefined;
36514
+ '--hvr-tt'?: csstype.Property.TextTransform | undefined;
36515
+ '--focus-tt'?: csstype.Property.TextTransform | undefined;
36516
+ '--tt-tablet'?: csstype.Property.TextTransform | undefined;
36517
+ '--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
36518
+ '--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
36519
+ '--tt-mobile'?: csstype.Property.TextTransform | undefined;
36520
+ '--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
36521
+ '--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
36522
+ '--top'?: csstype.Property.Top<string | number> | undefined;
36523
+ '--hvr-top'?: csstype.Property.Top<string | number> | undefined;
36524
+ '--focus-top'?: csstype.Property.Top<string | number> | undefined;
36525
+ '--top-tablet'?: csstype.Property.Top<string | number> | undefined;
36526
+ '--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
36527
+ '--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
36528
+ '--top-mobile'?: csstype.Property.Top<string | number> | undefined;
36529
+ '--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
36530
+ '--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
36531
+ '--t'?: csstype.Property.Transform | undefined;
36532
+ '--hvr-t'?: csstype.Property.Transform | undefined;
36533
+ '--focus-t'?: csstype.Property.Transform | undefined;
36534
+ '--t-tablet'?: csstype.Property.Transform | undefined;
36535
+ '--hvr-t-tablet'?: csstype.Property.Transform | undefined;
36536
+ '--focus-t-tablet'?: csstype.Property.Transform | undefined;
36537
+ '--t-mobile'?: csstype.Property.Transform | undefined;
36538
+ '--hvr-t-mobile'?: csstype.Property.Transform | undefined;
36539
+ '--focus-t-mobile'?: csstype.Property.Transform | undefined;
36540
+ '--v'?: csstype.Property.Visibility | undefined;
36541
+ '--hvr-v'?: csstype.Property.Visibility | undefined;
36542
+ '--focus-v'?: csstype.Property.Visibility | undefined;
36543
+ '--v-tablet'?: csstype.Property.Visibility | undefined;
36544
+ '--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
36545
+ '--focus-v-tablet'?: csstype.Property.Visibility | undefined;
36546
+ '--v-mobile'?: csstype.Property.Visibility | undefined;
36547
+ '--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
36548
+ '--focus-v-mobile'?: csstype.Property.Visibility | undefined;
36549
+ '--w'?: csstype.Property.Width<string | number> | undefined;
36550
+ '--hvr-w'?: csstype.Property.Width<string | number> | undefined;
36551
+ '--focus-w'?: csstype.Property.Width<string | number> | undefined;
36552
+ '--w-tablet'?: csstype.Property.Width<string | number> | undefined;
36553
+ '--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
36554
+ '--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
36555
+ '--w-mobile'?: csstype.Property.Width<string | number> | undefined;
36556
+ '--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
36557
+ '--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
36558
+ '--z'?: csstype.Property.ZIndex | undefined;
36559
+ '--hvr-z'?: csstype.Property.ZIndex | undefined;
36560
+ '--focus-z'?: csstype.Property.ZIndex | undefined;
36561
+ '--z-tablet'?: csstype.Property.ZIndex | undefined;
36562
+ '--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
36563
+ '--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
36564
+ '--z-mobile'?: csstype.Property.ZIndex | undefined;
36565
+ '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
36566
+ '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
36567
+ '--wm'?: csstype.Property.WritingMode | undefined;
36568
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
36569
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
36570
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
36571
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
36572
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
36573
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
36574
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
36575
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
36576
+ accentColor?: csstype.Property.AccentColor | undefined;
36577
+ alignContent?: csstype.Property.AlignContent | undefined;
36578
+ alignItems?: csstype.Property.AlignItems | undefined;
36579
+ alignSelf?: csstype.Property.AlignSelf | undefined;
36580
+ alignTracks?: csstype.Property.AlignTracks | undefined;
36581
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
36582
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
36583
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
36584
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
36585
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
36586
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
36587
+ animationName?: csstype.Property.AnimationName | undefined;
36588
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
36589
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
36590
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
36591
+ appearance?: csstype.Property.Appearance | undefined;
36592
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
36593
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
36594
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
36595
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
36596
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
36597
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
36598
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
36599
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
36600
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
36601
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
36602
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
36603
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
36604
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
36605
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
36606
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
36607
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
36608
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
36609
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
36610
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
36611
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
36612
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
36613
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
36614
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
36615
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
36616
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
36617
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36618
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36619
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
36620
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36621
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
36622
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
36623
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
36624
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
36625
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
36626
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
36627
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
36628
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
36629
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
36630
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
36631
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
36632
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
36633
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
36634
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
36635
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
36636
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
36637
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
36638
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
36639
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
36640
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
36641
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
36642
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
36643
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
36644
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
36645
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
36646
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
36647
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
36648
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36649
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36650
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
36651
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
36652
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
36653
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
36654
+ boxShadow?: csstype.Property.BoxShadow | undefined;
36655
+ boxSizing?: csstype.Property.BoxSizing | undefined;
36656
+ breakAfter?: csstype.Property.BreakAfter | undefined;
36657
+ breakBefore?: csstype.Property.BreakBefore | undefined;
36658
+ breakInside?: csstype.Property.BreakInside | undefined;
36659
+ captionSide?: csstype.Property.CaptionSide | undefined;
36660
+ caretColor?: csstype.Property.CaretColor | undefined;
36661
+ caretShape?: csstype.Property.CaretShape | undefined;
36662
+ clear?: csstype.Property.Clear | undefined;
36663
+ clipPath?: csstype.Property.ClipPath | undefined;
36664
+ color?: csstype.Property.Color | undefined;
36665
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
36666
+ colorScheme?: csstype.Property.ColorScheme | undefined;
36667
+ columnCount?: csstype.Property.ColumnCount | undefined;
36668
+ columnFill?: csstype.Property.ColumnFill | undefined;
36669
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
36670
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
36671
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
36672
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
36673
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
36674
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
36675
+ contain?: csstype.Property.Contain | undefined;
36676
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
36677
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
36678
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
36679
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
36680
+ containerName?: csstype.Property.ContainerName | undefined;
36681
+ containerType?: csstype.Property.ContainerType | undefined;
36682
+ content?: csstype.Property.Content | undefined;
36683
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
36684
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
36685
+ counterReset?: csstype.Property.CounterReset | undefined;
36686
+ counterSet?: csstype.Property.CounterSet | undefined;
36687
+ cursor?: csstype.Property.Cursor | undefined;
36688
+ direction?: csstype.Property.Direction | undefined;
36689
+ display?: csstype.Property.Display | undefined;
36690
+ emptyCells?: csstype.Property.EmptyCells | undefined;
36691
+ filter?: csstype.Property.Filter | undefined;
36692
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
36693
+ flexDirection?: csstype.Property.FlexDirection | undefined;
36694
+ flexGrow?: csstype.Property.FlexGrow | undefined;
36695
+ flexShrink?: csstype.Property.FlexShrink | undefined;
36696
+ flexWrap?: csstype.Property.FlexWrap | undefined;
36697
+ float?: csstype.Property.Float | undefined;
36698
+ fontFamily?: csstype.Property.FontFamily | undefined;
36699
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
36700
+ fontKerning?: csstype.Property.FontKerning | undefined;
36701
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
36702
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
36703
+ fontPalette?: csstype.Property.FontPalette | undefined;
36704
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
36705
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
36706
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
36707
+ fontStretch?: csstype.Property.FontStretch | undefined;
36708
+ fontStyle?: csstype.Property.FontStyle | undefined;
36709
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
36710
+ fontVariant?: csstype.Property.FontVariant | undefined;
36711
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
36712
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
36713
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
36714
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
36715
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
36716
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
36717
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
36718
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
36719
+ fontWeight?: csstype.Property.FontWeight | undefined;
36720
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
36721
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
36722
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
36723
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
36724
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
36725
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
36726
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
36727
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
36728
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
36729
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36730
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
36731
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
36732
+ height?: csstype.Property.Height<string | number> | undefined;
36733
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
36734
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
36735
+ hyphens?: csstype.Property.Hyphens | undefined;
36736
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
36737
+ imageRendering?: csstype.Property.ImageRendering | undefined;
36738
+ imageResolution?: csstype.Property.ImageResolution | undefined;
36739
+ initialLetter?: csstype.Property.InitialLetter | undefined;
36740
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
36741
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
36742
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
36743
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
36744
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
36745
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
36746
+ isolation?: csstype.Property.Isolation | undefined;
36747
+ justifyContent?: csstype.Property.JustifyContent | undefined;
36748
+ justifyItems?: csstype.Property.JustifyItems | undefined;
36749
+ justifySelf?: csstype.Property.JustifySelf | undefined;
36750
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
36751
+ left?: csstype.Property.Left<string | number> | undefined;
36752
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
36753
+ lineBreak?: csstype.Property.LineBreak | undefined;
36754
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
36755
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
36756
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
36757
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
36758
+ listStyleType?: csstype.Property.ListStyleType | undefined;
36759
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
36760
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
36761
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
36762
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
36763
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
36764
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
36765
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
36766
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
36767
+ marginTrim?: csstype.Property.MarginTrim | undefined;
36768
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
36769
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
36770
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
36771
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
36772
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
36773
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
36774
+ maskClip?: csstype.Property.MaskClip | undefined;
36775
+ maskComposite?: csstype.Property.MaskComposite | undefined;
36776
+ maskImage?: csstype.Property.MaskImage | undefined;
36777
+ maskMode?: csstype.Property.MaskMode | undefined;
36778
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
36779
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
36780
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
36781
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
36782
+ maskType?: csstype.Property.MaskType | undefined;
36783
+ mathDepth?: csstype.Property.MathDepth | undefined;
36784
+ mathShift?: csstype.Property.MathShift | undefined;
36785
+ mathStyle?: csstype.Property.MathStyle | undefined;
36786
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
36787
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
36788
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
36789
+ maxLines?: csstype.Property.MaxLines | undefined;
36790
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
36791
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
36792
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
36793
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
36794
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
36795
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
36796
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
36797
+ motionPath?: csstype.Property.OffsetPath | undefined;
36798
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
36799
+ objectFit?: csstype.Property.ObjectFit | undefined;
36800
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
36801
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
36802
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
36803
+ offsetPath?: csstype.Property.OffsetPath | undefined;
36804
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
36805
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
36806
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
36807
+ opacity?: csstype.Property.Opacity | undefined;
36808
+ order?: csstype.Property.Order | undefined;
36809
+ orphans?: csstype.Property.Orphans | undefined;
36810
+ outlineColor?: csstype.Property.OutlineColor | undefined;
36811
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
36812
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
36813
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
36814
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
36815
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
36816
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
36817
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
36818
+ overflowInline?: csstype.Property.OverflowInline | undefined;
36819
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
36820
+ overflowX?: csstype.Property.OverflowX | undefined;
36821
+ overflowY?: csstype.Property.OverflowY | undefined;
36822
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
36823
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
36824
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
36825
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
36826
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
36827
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
36828
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
36829
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
36830
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
36831
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
36832
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
36833
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
36834
+ page?: csstype.Property.Page | undefined;
36835
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
36836
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
36837
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
36838
+ paintOrder?: csstype.Property.PaintOrder | undefined;
36839
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
36840
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
36841
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
36842
+ position?: csstype.Property.Position | undefined;
36843
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
36844
+ quotes?: csstype.Property.Quotes | undefined;
36845
+ resize?: csstype.Property.Resize | undefined;
36846
+ right?: csstype.Property.Right<string | number> | undefined;
36847
+ rotate?: csstype.Property.Rotate | undefined;
36848
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
36849
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
36850
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
36851
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
36852
+ scale?: csstype.Property.Scale | undefined;
36853
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
36854
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
36855
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
36856
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
36857
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
36858
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
36859
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
36860
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
36861
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
36862
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
36863
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
36864
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
36865
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
36866
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
36867
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
36868
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
36869
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
36870
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
36871
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
36872
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
36873
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
36874
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
36875
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
36876
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
36877
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
36878
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
36879
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
36880
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
36881
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
36882
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
36883
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
36884
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
36885
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
36886
+ tableLayout?: csstype.Property.TableLayout | undefined;
36887
+ textAlign?: csstype.Property.TextAlign | undefined;
36888
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
36889
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
36890
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
36891
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
36892
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
36893
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
36894
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
36895
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36896
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
36897
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
36898
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
36899
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
36900
+ textJustify?: csstype.Property.TextJustify | undefined;
36901
+ textOrientation?: csstype.Property.TextOrientation | undefined;
36902
+ textOverflow?: csstype.Property.TextOverflow | undefined;
36903
+ textRendering?: csstype.Property.TextRendering | undefined;
36904
+ textShadow?: csstype.Property.TextShadow | undefined;
36905
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
36906
+ textTransform?: csstype.Property.TextTransform | undefined;
36907
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
36908
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
36909
+ top?: csstype.Property.Top<string | number> | undefined;
36910
+ touchAction?: csstype.Property.TouchAction | undefined;
36911
+ transform?: csstype.Property.Transform | undefined;
36912
+ transformBox?: csstype.Property.TransformBox | undefined;
36913
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
36914
+ transformStyle?: csstype.Property.TransformStyle | undefined;
36915
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
36916
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
36917
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
36918
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
36919
+ translate?: csstype.Property.Translate<string | number> | undefined;
36920
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
36921
+ userSelect?: csstype.Property.UserSelect | undefined;
36922
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
36923
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
36924
+ visibility?: csstype.Property.Visibility | undefined;
36925
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
36926
+ widows?: csstype.Property.Widows | undefined;
36927
+ width?: csstype.Property.Width<string | number> | undefined;
36928
+ willChange?: csstype.Property.WillChange | undefined;
36929
+ wordBreak?: csstype.Property.WordBreak | undefined;
36930
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
36931
+ wordWrap?: csstype.Property.WordWrap | undefined;
36932
+ writingMode?: csstype.Property.WritingMode | undefined;
36933
+ zIndex?: csstype.Property.ZIndex | undefined;
36934
+ zoom?: csstype.Property.Zoom | undefined;
36935
+ all?: csstype.Globals | undefined;
36936
+ animation?: csstype.Property.Animation<string & {}> | undefined;
36937
+ background?: csstype.Property.Background<string | number> | undefined;
36938
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
36939
+ border?: csstype.Property.Border<string | number> | undefined;
36940
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
36941
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
36942
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
36943
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
36944
+ borderColor?: csstype.Property.BorderColor | undefined;
36945
+ borderImage?: csstype.Property.BorderImage | undefined;
36946
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
36947
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
36948
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
36949
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
36950
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
36951
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
36952
+ borderStyle?: csstype.Property.BorderStyle | undefined;
36953
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
36954
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
36955
+ caret?: csstype.Property.Caret | undefined;
36956
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
36957
+ columns?: csstype.Property.Columns<string | number> | undefined;
36958
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
36959
+ container?: csstype.Property.Container | undefined;
36960
+ flex?: csstype.Property.Flex<string | number> | undefined;
36961
+ flexFlow?: csstype.Property.FlexFlow | undefined;
36962
+ font?: csstype.Property.Font | undefined;
36963
+ gap?: csstype.Property.Gap<string | number> | undefined;
36964
+ grid?: csstype.Property.Grid | undefined;
36965
+ gridArea?: csstype.Property.GridArea | undefined;
36966
+ gridColumn?: csstype.Property.GridColumn | undefined;
36967
+ gridRow?: csstype.Property.GridRow | undefined;
36968
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
36969
+ inset?: csstype.Property.Inset<string | number> | undefined;
36970
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
36971
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
36972
+ lineClamp?: csstype.Property.LineClamp | undefined;
36973
+ listStyle?: csstype.Property.ListStyle | undefined;
36974
+ margin?: csstype.Property.Margin<string | number> | undefined;
36975
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
36976
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
36977
+ mask?: csstype.Property.Mask<string | number> | undefined;
36978
+ maskBorder?: csstype.Property.MaskBorder | undefined;
36979
+ motion?: csstype.Property.Offset<string | number> | undefined;
36980
+ offset?: csstype.Property.Offset<string | number> | undefined;
36981
+ outline?: csstype.Property.Outline<string | number> | undefined;
36982
+ overflow?: csstype.Property.Overflow | undefined;
36983
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
36984
+ padding?: csstype.Property.Padding<string | number> | undefined;
36985
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
36986
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
36987
+ placeContent?: csstype.Property.PlaceContent | undefined;
36988
+ placeItems?: csstype.Property.PlaceItems | undefined;
36989
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
36990
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
36991
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
36992
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
36993
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
36994
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
36995
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
36996
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
36997
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
36998
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
36999
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
37000
+ transition?: csstype.Property.Transition<string & {}> | undefined;
37001
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
37002
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
37003
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
37004
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
37005
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
37006
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
37007
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
37008
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
37009
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
37010
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
37011
+ MozBinding?: csstype.Property.MozBinding | undefined;
37012
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
37013
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
37014
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
37015
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
37016
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
37017
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
37018
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
37019
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
37020
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
37021
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
37022
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
37023
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
37024
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
37025
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
37026
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
37027
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
37028
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
37029
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
37030
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
37031
+ MozHyphens?: csstype.Property.Hyphens | undefined;
37032
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
37033
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
37034
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
37035
+ MozOrient?: csstype.Property.MozOrient | undefined;
37036
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
37037
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
37038
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
37039
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
37040
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
37041
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
37042
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
37043
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
37044
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
37045
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37046
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
37047
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37048
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37049
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37050
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37051
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
37052
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
37053
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
37054
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
37055
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
37056
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
37057
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
37058
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
37059
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
37060
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
37061
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
37062
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
37063
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
37064
+ msFilter?: csstype.Property.MsFilter | undefined;
37065
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
37066
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
37067
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
37068
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
37069
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
37070
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
37071
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
37072
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
37073
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
37074
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
37075
+ msHyphens?: csstype.Property.Hyphens | undefined;
37076
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
37077
+ msLineBreak?: csstype.Property.LineBreak | undefined;
37078
+ msOrder?: csstype.Property.Order | undefined;
37079
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
37080
+ msOverflowX?: csstype.Property.OverflowX | undefined;
37081
+ msOverflowY?: csstype.Property.OverflowY | undefined;
37082
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
37083
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
37084
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
37085
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
37086
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
37087
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
37088
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
37089
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
37090
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
37091
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
37092
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
37093
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
37094
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
37095
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
37096
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
37097
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
37098
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
37099
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
37100
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
37101
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
37102
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
37103
+ msTouchAction?: csstype.Property.TouchAction | undefined;
37104
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
37105
+ msTransform?: csstype.Property.Transform | undefined;
37106
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37107
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37108
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37109
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37110
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37111
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
37112
+ msWordBreak?: csstype.Property.WordBreak | undefined;
37113
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
37114
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
37115
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
37116
+ msWritingMode?: csstype.Property.WritingMode | undefined;
37117
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
37118
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
37119
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
37120
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
37121
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
37122
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
37123
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
37124
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
37125
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
37126
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
37127
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
37128
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
37129
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
37130
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
37131
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
37132
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
37133
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
37134
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
37135
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
37136
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
37137
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37138
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37139
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
37140
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37141
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37142
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
37143
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
37144
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
37145
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
37146
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
37147
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
37148
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
37149
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
37150
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
37151
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
37152
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
37153
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
37154
+ WebkitFilter?: csstype.Property.Filter | undefined;
37155
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
37156
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
37157
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
37158
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
37159
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
37160
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
37161
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
37162
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
37163
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
37164
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
37165
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
37166
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
37167
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
37168
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
37169
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
37170
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
37171
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
37172
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
37173
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
37174
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
37175
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
37176
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
37177
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
37178
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
37179
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
37180
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
37181
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
37182
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
37183
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
37184
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
37185
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
37186
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
37187
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
37188
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
37189
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
37190
+ WebkitOrder?: csstype.Property.Order | undefined;
37191
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
37192
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
37193
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
37194
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
37195
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
37196
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
37197
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
37198
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
37199
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
37200
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
37201
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
37202
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
37203
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
37204
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
37205
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
37206
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
37207
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
37208
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
37209
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
37210
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
37211
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
37212
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
37213
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
37214
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
37215
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
37216
+ WebkitTransform?: csstype.Property.Transform | undefined;
37217
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37218
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
37219
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37220
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37221
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37222
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37223
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
37224
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
37225
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
37226
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
37227
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
37228
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
37229
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
37230
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
37231
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
37232
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
37233
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
37234
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
37235
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
37236
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
37237
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
37238
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
37239
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
37240
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
37241
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
37242
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
37243
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
37244
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
37245
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
37246
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
37247
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
37248
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
37249
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
37250
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
37251
+ azimuth?: csstype.Property.Azimuth | undefined;
37252
+ boxAlign?: csstype.Property.BoxAlign | undefined;
37253
+ boxDirection?: csstype.Property.BoxDirection | undefined;
37254
+ boxFlex?: csstype.Property.BoxFlex | undefined;
37255
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
37256
+ boxLines?: csstype.Property.BoxLines | undefined;
37257
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37258
+ boxOrient?: csstype.Property.BoxOrient | undefined;
37259
+ boxPack?: csstype.Property.BoxPack | undefined;
37260
+ clip?: csstype.Property.Clip | undefined;
37261
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
37262
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
37263
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
37264
+ imeMode?: csstype.Property.ImeMode | undefined;
37265
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
37266
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
37267
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
37268
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
37269
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
37270
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
37271
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
37272
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
37273
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
37274
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
37275
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
37276
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
37277
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
37278
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
37279
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
37280
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
37281
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
37282
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37283
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
37284
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
37285
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
37286
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
37287
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
37288
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
37289
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
37290
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
37291
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
37292
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
37293
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37294
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37295
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37296
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37297
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
37298
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
37299
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
37300
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37301
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
37302
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
37303
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
37304
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
37305
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
37306
+ MozOpacity?: csstype.Property.Opacity | undefined;
37307
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
37308
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
37309
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
37310
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
37311
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
37312
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
37313
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
37314
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
37315
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
37316
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
37317
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
37318
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
37319
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
37320
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
37321
+ msImeMode?: csstype.Property.ImeMode | undefined;
37322
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
37323
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
37324
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
37325
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
37326
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
37327
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
37328
+ OAnimationName?: csstype.Property.AnimationName | undefined;
37329
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
37330
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
37331
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
37332
+ OBorderImage?: csstype.Property.BorderImage | undefined;
37333
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
37334
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
37335
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
37336
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
37337
+ OTransform?: csstype.Property.Transform | undefined;
37338
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37339
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
37340
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37341
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37342
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37343
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37344
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
37345
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
37346
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
37347
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
37348
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
37349
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37350
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
37351
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
37352
+ WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
37353
+ WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
37354
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
37355
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
37356
+ clipRule?: csstype.Property.ClipRule | undefined;
37357
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
37358
+ colorRendering?: csstype.Property.ColorRendering | undefined;
37359
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
37360
+ fill?: csstype.Property.Fill | undefined;
37361
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
37362
+ fillRule?: csstype.Property.FillRule | undefined;
37363
+ floodColor?: csstype.Property.FloodColor | undefined;
37364
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
37365
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
37366
+ lightingColor?: csstype.Property.LightingColor | undefined;
37367
+ marker?: csstype.Property.Marker | undefined;
37368
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
37369
+ markerMid?: csstype.Property.MarkerMid | undefined;
37370
+ markerStart?: csstype.Property.MarkerStart | undefined;
37371
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
37372
+ stopColor?: csstype.Property.StopColor | undefined;
37373
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
37374
+ stroke?: csstype.Property.Stroke | undefined;
37375
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
37376
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
37377
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
37378
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
37379
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
37380
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
37381
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
37382
+ textAnchor?: csstype.Property.TextAnchor | undefined;
37383
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
37384
+ } | undefined;
35671
37385
  declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
35672
37386
  hasBoxShadow?: boolean | undefined;
35673
37387
  boxShadowValue?: ShadowProps | undefined;
@@ -36033,6 +37747,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
36033
37747
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36034
37748
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36035
37749
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
37750
+ '--gr'?: csstype.Property.GridRow | undefined;
37751
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
37752
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
37753
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
37754
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
37755
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
37756
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
37757
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
37758
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
36036
37759
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36037
37760
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36038
37761
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -37526,6 +39249,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
37526
39249
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
37527
39250
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
37528
39251
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
39252
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
37529
39253
  };
37530
39254
 
37531
39255
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
@@ -37544,4 +39268,4 @@ declare const getAppBlocks: (section: PublishedPageSection$1 & {
37544
39268
 
37545
39269
  declare const addAppBlockId: (component: Component) => Component;
37546
39270
 
37547
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
39271
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };