@gem-sdk/core 1.48.0-dev.6 → 1.48.0-dev.60

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.
@@ -6909,7 +6909,7 @@ type StampedWidgetType = 'main-widget' | 'carousel' | 'full-page' | 'visual-gall
6909
6909
  type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
6910
6910
  type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
6911
6911
  type YotpoReviewsWidgetType = 'reviews' | 'badge' | 'reviewHighlights';
6912
- type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message';
6912
+ type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message' | 'classic-bundle' | 'quantity-break';
6913
6913
 
6914
6914
  type ResponsiveConfig<T> = {
6915
6915
  desktop: {
@@ -7334,6 +7334,7 @@ type Option$2<T> = {
7334
7334
  tooltip?: string;
7335
7335
  type?: string;
7336
7336
  note?: string;
7337
+ maxOption?: number;
7337
7338
  };
7338
7339
  type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7339
7340
  id: K;
@@ -7449,7 +7450,7 @@ type BoxShadowControlType<T> = SharedControlType<T> & {
7449
7450
 
7450
7451
  type TextShadowControlType<T> = SharedControlType<T> & {
7451
7452
  id?: string;
7452
- type: 'textShadow';
7453
+ type: 'text-shadow';
7453
7454
  popup?: boolean;
7454
7455
  };
7455
7456
 
@@ -8032,8 +8033,79 @@ type ShapeSelectorControlType<T> = SharedControlType<T> & {
8032
8033
  type: 'shape-selector';
8033
8034
  };
8034
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;
8035
8106
  type DisplayTriggerControlType<T> = SharedControlType<T> & {
8036
8107
  type: 'display-trigger-badge';
8108
+ default: TDisplayTrigger[];
8037
8109
  };
8038
8110
 
8039
8111
  type CustomPositionControlType<T> = SharedControlType<T> & {
@@ -8060,7 +8132,115 @@ type SelectProductBundleControlType<T> = SharedControlType<T> & {
8060
8132
  hide?: boolean;
8061
8133
  };
8062
8134
 
8063
- 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>;
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
+ button?: {
8144
+ label: string;
8145
+ link: string;
8146
+ };
8147
+ media?: {
8148
+ value: string;
8149
+ type: SettingMediaType;
8150
+ };
8151
+ };
8152
+ type LinkWithSetting = {
8153
+ name: string;
8154
+ state?: string;
8155
+ field?: string;
8156
+ };
8157
+ type ControlConfig = ControlProp<any> & {
8158
+ linkWithSetting?: LinkWithSetting;
8159
+ };
8160
+ type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
8161
+ type SettingUIControl = {
8162
+ id?: string;
8163
+ controlConfig?: ControlConfig;
8164
+ isCompo?: boolean;
8165
+ layout?: 'vertical' | 'horizontal';
8166
+ toggleGroupId?: string;
8167
+ label?: LabelWithLang;
8168
+ conditionDisplay?: string;
8169
+ conditionEnable?: string;
8170
+ options?: {
8171
+ hideLabel?: boolean;
8172
+ hideOnDevices?: Record<NameDevices$1, boolean>;
8173
+ fullWidth?: boolean;
8174
+ onlyShowInTags?: string[];
8175
+ target?: 'tab';
8176
+ disableMessage?: string;
8177
+ nearestSupportedPlan?: Plan;
8178
+ lockedOnPlans?: Plan[];
8179
+ labelVariant?: 'primary' | 'secondary';
8180
+ labelInsideControl?: boolean;
8181
+ };
8182
+ setting?: {
8183
+ id: string;
8184
+ state?: SettingStateType;
8185
+ };
8186
+ searchKeyword?: string;
8187
+ } & SettingUICompo;
8188
+ type SettingUICompo = {
8189
+ controls?: SettingUIControl[];
8190
+ iconName?: string;
8191
+ getValueFromSettingID?: string;
8192
+ fixedValue?: string;
8193
+ placeholder?: string;
8194
+ help?: SettingUIHelpType;
8195
+ };
8196
+ type SettingUIMoreSetting = {
8197
+ label?: LabelWithLang;
8198
+ labelAction?: LabelWithLang;
8199
+ controls?: SettingUIControl[];
8200
+ help?: SettingUIHelpType;
8201
+ };
8202
+ type SettingUIToggleGroup = {
8203
+ label?: LabelWithLang;
8204
+ id?: string;
8205
+ controls?: SettingUIControl[];
8206
+ };
8207
+ type SettingUIToggleSettings = {
8208
+ type: 'control' | 'toggleGroup';
8209
+ controls?: SettingUIControl[];
8210
+ isActiveDefault?: boolean;
8211
+ } & SettingUIControl & SettingUIToggleGroup;
8212
+ type SettingUIGroup = {
8213
+ label?: LabelWithLang;
8214
+ message?: string;
8215
+ disableToggle?: boolean;
8216
+ conditionDisplay?: string;
8217
+ conditionEnable?: string;
8218
+ controls?: SettingUIControl[];
8219
+ moreSettings?: SettingUIMoreSetting;
8220
+ toggleSettings?: SettingUIToggleSettings[];
8221
+ help?: SettingUIHelpType;
8222
+ options?: {
8223
+ disableMessage?: string;
8224
+ };
8225
+ };
8226
+
8227
+ type FontWeight<T> = SharedControlType<T> & {
8228
+ type: 'font-weight';
8229
+ };
8230
+
8231
+ type LetterSpacing<T> = SharedControlType<T> & {
8232
+ type: 'letter-spacing';
8233
+ };
8234
+
8235
+ type TextTransform<T> = SharedControlType<T> & {
8236
+ type: 'text-transform';
8237
+ };
8238
+
8239
+ type LineHeight<T> = SharedControlType<T> & {
8240
+ type: 'line-height';
8241
+ };
8242
+
8243
+ 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> | FontWeight<T> | LetterSpacing<T> | TextTransform<T> | LineHeight<T>;
8064
8244
  type ControlTriggerAction = {
8065
8245
  controlId: string;
8066
8246
  newValue?: any;
@@ -8131,6 +8311,7 @@ type ComponentSetting<P extends BaseProps> = {
8131
8311
  };
8132
8312
  };
8133
8313
  ui?: ControlUI[];
8314
+ uiV2?: SettingUIGroup[];
8134
8315
  presets?: ComponentPreset[];
8135
8316
  locales?: Record<string, any>;
8136
8317
  };
@@ -28415,6 +28596,7 @@ type TypographyProps = {
28415
28596
  fallbackFontFamily?: string;
28416
28597
  textShadow?: ShadowProps;
28417
28598
  hasShadowText?: boolean;
28599
+ isCustom?: boolean;
28418
28600
  };
28419
28601
  type TypographyV2Props = Omit<TypographyProps, 'fontSize' | 'lineHeight'> & {
28420
28602
  fontSize?: ObjectDevices<string>;
@@ -28823,7 +29005,7 @@ type ProductListProviderProps = ProductListContextProps & {
28823
29005
  declare const ProductListProvider: React.FC<ProductListProviderProps>;
28824
29006
  declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
28825
29007
 
28826
- type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
29008
+ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
28827
29009
  collections?: Maybe$1<{
28828
29010
  edges: Array<{
28829
29011
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
@@ -29187,6 +29369,7 @@ type PublishedThemePagesQueryResponse = {
29187
29369
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
29188
29370
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
29189
29371
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
29372
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
29190
29373
  }>>>;
29191
29374
  };
29192
29375
  declare const PublishedThemePagesDocument: string;
@@ -29264,6 +29447,7 @@ type PreviewPageQueryResponse = {
29264
29447
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
29265
29448
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
29266
29449
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
29450
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
29267
29451
  }>;
29268
29452
  };
29269
29453
  declare const PreviewPageDocument: string;
@@ -29883,6 +30067,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
29883
30067
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
29884
30068
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
29885
30069
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
30070
+ '--gr'?: csstype.Property.GridRow | undefined;
30071
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
30072
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
30073
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
30074
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
30075
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
30076
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
30077
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
30078
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
29886
30079
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
29887
30080
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
29888
30081
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -31387,6 +31580,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
31387
31580
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31388
31581
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31389
31582
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31583
+ '--gr'?: csstype.Property.GridRow | undefined;
31584
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
31585
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
31586
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
31587
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
31588
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
31589
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
31590
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
31591
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
31390
31592
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
31391
31593
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
31392
31594
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -32891,6 +33093,15 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
32891
33093
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
32892
33094
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
32893
33095
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
33096
+ '--gr'?: csstype.Property.GridRow | undefined;
33097
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
33098
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
33099
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
33100
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
33101
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
33102
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
33103
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
33104
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
32894
33105
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
32895
33106
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
32896
33107
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -34395,6 +34606,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
34395
34606
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34396
34607
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34397
34608
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34609
+ '--gr'?: csstype.Property.GridRow | undefined;
34610
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
34611
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
34612
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
34613
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
34614
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
34615
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
34616
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
34617
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
34398
34618
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
34399
34619
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
34400
34620
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -35670,10 +35890,1525 @@ declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
35670
35890
  declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
35671
35891
 
35672
35892
  declare const parseValueWithUnit: (valueWithUnit: string) => any;
35673
- declare const getStyleShadow: (shadowStyle: ShadowStyle, isActiveState?: boolean) => {
35893
+ declare const getStyleShadow: (shadowStyle: ShadowStyle & {
35894
+ screen?: string;
35895
+ }, isActiveState?: boolean) => {
35674
35896
  [x: string]: string;
35675
35897
  };
35676
- declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>) => React.CSSProperties;
35898
+ declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
35899
+ declare const getResonsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
35900
+ [x: string]: any;
35901
+ '--ai'?: csstype.Property.AlignItems | undefined;
35902
+ '--hvr-ai'?: csstype.Property.AlignItems | undefined;
35903
+ '--focus-ai'?: csstype.Property.AlignItems | undefined;
35904
+ '--ai-tablet'?: csstype.Property.AlignItems | undefined;
35905
+ '--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
35906
+ '--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
35907
+ '--ai-mobile'?: csstype.Property.AlignItems | undefined;
35908
+ '--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
35909
+ '--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
35910
+ '--aspect'?: csstype.Property.AspectRatio | undefined;
35911
+ '--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
35912
+ '--focus-aspect'?: csstype.Property.AspectRatio | undefined;
35913
+ '--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
35914
+ '--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
35915
+ '--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
35916
+ '--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
35917
+ '--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
35918
+ '--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
35919
+ '--bg'?: csstype.Property.Background<string | number> | undefined;
35920
+ '--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
35921
+ '--focus-bg'?: csstype.Property.Background<string | number> | undefined;
35922
+ '--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
35923
+ '--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
35924
+ '--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
35925
+ '--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
35926
+ '--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
35927
+ '--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
35928
+ '--bga'?: csstype.Property.BackgroundAttachment | undefined;
35929
+ '--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
35930
+ '--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
35931
+ '--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
35932
+ '--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
35933
+ '--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
35934
+ '--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
35935
+ '--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
35936
+ '--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
35937
+ '--bgc'?: csstype.Property.BackgroundColor | undefined;
35938
+ '--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
35939
+ '--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
35940
+ '--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
35941
+ '--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
35942
+ '--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
35943
+ '--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
35944
+ '--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
35945
+ '--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
35946
+ '--bgi'?: csstype.Property.BackgroundImage | undefined;
35947
+ '--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
35948
+ '--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
35949
+ '--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
35950
+ '--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
35951
+ '--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
35952
+ '--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
35953
+ '--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
35954
+ '--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
35955
+ '--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35956
+ '--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35957
+ '--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35958
+ '--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35959
+ '--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35960
+ '--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35961
+ '--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35962
+ '--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35963
+ '--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
35964
+ '--bgr'?: csstype.Property.BackgroundRepeat | undefined;
35965
+ '--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
35966
+ '--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
35967
+ '--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
35968
+ '--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
35969
+ '--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
35970
+ '--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
35971
+ '--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
35972
+ '--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
35973
+ '--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
35974
+ '--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
35975
+ '--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
35976
+ '--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
35977
+ '--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
35978
+ '--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
35979
+ '--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
35980
+ '--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
35981
+ '--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
35982
+ '--b'?: csstype.Property.Border<string | number> | undefined;
35983
+ '--hvr-b'?: csstype.Property.Border<string | number> | undefined;
35984
+ '--focus-b'?: csstype.Property.Border<string | number> | undefined;
35985
+ '--b-tablet'?: csstype.Property.Border<string | number> | undefined;
35986
+ '--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
35987
+ '--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
35988
+ '--b-mobile'?: csstype.Property.Border<string | number> | undefined;
35989
+ '--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
35990
+ '--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
35991
+ '--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
35992
+ '--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
35993
+ '--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
35994
+ '--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
35995
+ '--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
35996
+ '--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
35997
+ '--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
35998
+ '--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
35999
+ '--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
36000
+ '--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36001
+ '--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36002
+ '--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36003
+ '--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36004
+ '--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36005
+ '--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36006
+ '--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36007
+ '--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36008
+ '--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36009
+ '--bbc'?: csstype.Property.BorderBottomColor | undefined;
36010
+ '--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
36011
+ '--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
36012
+ '--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
36013
+ '--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
36014
+ '--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
36015
+ '--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
36016
+ '--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
36017
+ '--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
36018
+ '--bc'?: csstype.Property.BorderColor | undefined;
36019
+ '--hvr-bc'?: csstype.Property.BorderColor | undefined;
36020
+ '--focus-bc'?: csstype.Property.BorderColor | undefined;
36021
+ '--bc-tablet'?: csstype.Property.BorderColor | undefined;
36022
+ '--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
36023
+ '--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
36024
+ '--bc-mobile'?: csstype.Property.BorderColor | undefined;
36025
+ '--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
36026
+ '--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
36027
+ '--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36028
+ '--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36029
+ '--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36030
+ '--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36031
+ '--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36032
+ '--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36033
+ '--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36034
+ '--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36035
+ '--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36036
+ '--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36037
+ '--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36038
+ '--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36039
+ '--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36040
+ '--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36041
+ '--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36042
+ '--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36043
+ '--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36044
+ '--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36045
+ '--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
36046
+ '--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
36047
+ '--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
36048
+ '--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
36049
+ '--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
36050
+ '--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
36051
+ '--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
36052
+ '--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
36053
+ '--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
36054
+ '--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
36055
+ '--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
36056
+ '--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
36057
+ '--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
36058
+ '--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
36059
+ '--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
36060
+ '--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
36061
+ '--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
36062
+ '--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
36063
+ '--br'?: csstype.Property.BorderRight<string | number> | undefined;
36064
+ '--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
36065
+ '--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
36066
+ '--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
36067
+ '--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
36068
+ '--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
36069
+ '--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
36070
+ '--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
36071
+ '--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
36072
+ '--bs'?: csstype.Property.BorderStyle | undefined;
36073
+ '--hvr-bs'?: csstype.Property.BorderStyle | undefined;
36074
+ '--focus-bs'?: csstype.Property.BorderStyle | undefined;
36075
+ '--bs-tablet'?: csstype.Property.BorderStyle | undefined;
36076
+ '--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
36077
+ '--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
36078
+ '--bs-mobile'?: csstype.Property.BorderStyle | undefined;
36079
+ '--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
36080
+ '--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
36081
+ '--bt'?: csstype.Property.BorderTop<string | number> | undefined;
36082
+ '--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
36083
+ '--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
36084
+ '--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
36085
+ '--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
36086
+ '--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
36087
+ '--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
36088
+ '--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
36089
+ '--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
36090
+ '--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36091
+ '--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36092
+ '--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36093
+ '--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36094
+ '--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36095
+ '--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36096
+ '--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36097
+ '--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36098
+ '--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36099
+ '--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36100
+ '--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36101
+ '--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36102
+ '--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36103
+ '--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36104
+ '--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36105
+ '--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36106
+ '--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36107
+ '--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36108
+ '--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
36109
+ '--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
36110
+ '--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
36111
+ '--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
36112
+ '--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
36113
+ '--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
36114
+ '--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
36115
+ '--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
36116
+ '--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
36117
+ '--bottom'?: csstype.Property.Bottom<string | number> | undefined;
36118
+ '--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
36119
+ '--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
36120
+ '--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
36121
+ '--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
36122
+ '--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
36123
+ '--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
36124
+ '--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
36125
+ '--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
36126
+ '--shadow'?: csstype.Property.BoxShadow | undefined;
36127
+ '--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
36128
+ '--focus-shadow'?: csstype.Property.BoxShadow | undefined;
36129
+ '--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
36130
+ '--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
36131
+ '--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
36132
+ '--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
36133
+ '--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
36134
+ '--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
36135
+ '--c'?: csstype.Property.Color | undefined;
36136
+ '--hvr-c'?: csstype.Property.Color | undefined;
36137
+ '--focus-c'?: csstype.Property.Color | undefined;
36138
+ '--c-tablet'?: csstype.Property.Color | undefined;
36139
+ '--hvr-c-tablet'?: csstype.Property.Color | undefined;
36140
+ '--focus-c-tablet'?: csstype.Property.Color | undefined;
36141
+ '--c-mobile'?: csstype.Property.Color | undefined;
36142
+ '--hvr-c-mobile'?: csstype.Property.Color | undefined;
36143
+ '--focus-c-mobile'?: csstype.Property.Color | undefined;
36144
+ '--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
36145
+ '--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
36146
+ '--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
36147
+ '--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
36148
+ '--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
36149
+ '--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
36150
+ '--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
36151
+ '--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
36152
+ '--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
36153
+ '--d'?: csstype.Property.Display | undefined;
36154
+ '--hvr-d'?: csstype.Property.Display | undefined;
36155
+ '--focus-d'?: csstype.Property.Display | undefined;
36156
+ '--d-tablet'?: csstype.Property.Display | undefined;
36157
+ '--hvr-d-tablet'?: csstype.Property.Display | undefined;
36158
+ '--focus-d-tablet'?: csstype.Property.Display | undefined;
36159
+ '--d-mobile'?: csstype.Property.Display | undefined;
36160
+ '--hvr-d-mobile'?: csstype.Property.Display | undefined;
36161
+ '--focus-d-mobile'?: csstype.Property.Display | undefined;
36162
+ '--fd'?: csstype.Property.FlexDirection | undefined;
36163
+ '--hvr-fd'?: csstype.Property.FlexDirection | undefined;
36164
+ '--focus-fd'?: csstype.Property.FlexDirection | undefined;
36165
+ '--fd-tablet'?: csstype.Property.FlexDirection | undefined;
36166
+ '--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
36167
+ '--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
36168
+ '--fd-mobile'?: csstype.Property.FlexDirection | undefined;
36169
+ '--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
36170
+ '--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
36171
+ '--ff'?: csstype.Property.FontFamily | undefined;
36172
+ '--hvr-ff'?: csstype.Property.FontFamily | undefined;
36173
+ '--focus-ff'?: csstype.Property.FontFamily | undefined;
36174
+ '--ff-tablet'?: csstype.Property.FontFamily | undefined;
36175
+ '--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
36176
+ '--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
36177
+ '--ff-mobile'?: csstype.Property.FontFamily | undefined;
36178
+ '--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
36179
+ '--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
36180
+ '--size'?: csstype.Property.FontSize<string | number> | undefined;
36181
+ '--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
36182
+ '--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
36183
+ '--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
36184
+ '--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
36185
+ '--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
36186
+ '--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
36187
+ '--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
36188
+ '--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
36189
+ '--weight'?: csstype.Property.FontWeight | undefined;
36190
+ '--hvr-weight'?: csstype.Property.FontWeight | undefined;
36191
+ '--focus-weight'?: csstype.Property.FontWeight | undefined;
36192
+ '--weight-tablet'?: csstype.Property.FontWeight | undefined;
36193
+ '--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
36194
+ '--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
36195
+ '--weight-mobile'?: csstype.Property.FontWeight | undefined;
36196
+ '--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
36197
+ '--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
36198
+ '--fs'?: csstype.Property.FontStyle | undefined;
36199
+ '--hvr-fs'?: csstype.Property.FontStyle | undefined;
36200
+ '--focus-fs'?: csstype.Property.FontStyle | undefined;
36201
+ '--fs-tablet'?: csstype.Property.FontStyle | undefined;
36202
+ '--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
36203
+ '--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
36204
+ '--fs-mobile'?: csstype.Property.FontStyle | undefined;
36205
+ '--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
36206
+ '--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
36207
+ '--gg'?: csstype.Property.GridGap<string | number> | undefined;
36208
+ '--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
36209
+ '--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
36210
+ '--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
36211
+ '--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
36212
+ '--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
36213
+ '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36214
+ '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36215
+ '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36216
+ '--gr'?: csstype.Property.GridRow | undefined;
36217
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
36218
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
36219
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
36220
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
36221
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
36222
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
36223
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
36224
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
36225
+ '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36226
+ '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36227
+ '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36228
+ '--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36229
+ '--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36230
+ '--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36231
+ '--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36232
+ '--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36233
+ '--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36234
+ '--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36235
+ '--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36236
+ '--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36237
+ '--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36238
+ '--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36239
+ '--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36240
+ '--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36241
+ '--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36242
+ '--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
36243
+ '--h'?: csstype.Property.Height<string | number> | undefined;
36244
+ '--hvr-h'?: csstype.Property.Height<string | number> | undefined;
36245
+ '--focus-h'?: csstype.Property.Height<string | number> | undefined;
36246
+ '--h-tablet'?: csstype.Property.Height<string | number> | undefined;
36247
+ '--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
36248
+ '--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
36249
+ '--h-mobile'?: csstype.Property.Height<string | number> | undefined;
36250
+ '--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
36251
+ '--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
36252
+ '--jc'?: csstype.Property.JustifyContent | undefined;
36253
+ '--hvr-jc'?: csstype.Property.JustifyContent | undefined;
36254
+ '--focus-jc'?: csstype.Property.JustifyContent | undefined;
36255
+ '--jc-tablet'?: csstype.Property.JustifyContent | undefined;
36256
+ '--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
36257
+ '--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
36258
+ '--jc-mobile'?: csstype.Property.JustifyContent | undefined;
36259
+ '--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
36260
+ '--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
36261
+ '--left'?: csstype.Property.Left<string | number> | undefined;
36262
+ '--hvr-left'?: csstype.Property.Left<string | number> | undefined;
36263
+ '--focus-left'?: csstype.Property.Left<string | number> | undefined;
36264
+ '--left-tablet'?: csstype.Property.Left<string | number> | undefined;
36265
+ '--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
36266
+ '--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
36267
+ '--left-mobile'?: csstype.Property.Left<string | number> | undefined;
36268
+ '--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
36269
+ '--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
36270
+ '--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
36271
+ '--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
36272
+ '--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
36273
+ '--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
36274
+ '--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
36275
+ '--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
36276
+ '--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
36277
+ '--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
36278
+ '--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
36279
+ '--line-clamp'?: any;
36280
+ '--hvr-line-clamp'?: any;
36281
+ '--focus-line-clamp'?: any;
36282
+ '--line-clamp-tablet'?: any;
36283
+ '--hvr-line-clamp-tablet'?: any;
36284
+ '--focus-line-clamp-tablet'?: any;
36285
+ '--line-clamp-mobile'?: any;
36286
+ '--hvr-line-clamp-mobile'?: any;
36287
+ '--focus-line-clamp-mobile'?: any;
36288
+ '--lh'?: csstype.Property.LineHeight<string | number> | undefined;
36289
+ '--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
36290
+ '--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
36291
+ '--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
36292
+ '--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
36293
+ '--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
36294
+ '--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
36295
+ '--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
36296
+ '--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
36297
+ '--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36298
+ '--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36299
+ '--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36300
+ '--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36301
+ '--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36302
+ '--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36303
+ '--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36304
+ '--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36305
+ '--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36306
+ '--tdc'?: csstype.Property.TextDecorationColor | undefined;
36307
+ '--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
36308
+ '--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
36309
+ '--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
36310
+ '--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
36311
+ '--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
36312
+ '--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
36313
+ '--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
36314
+ '--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
36315
+ '--tdl'?: csstype.Property.TextDecorationLine | undefined;
36316
+ '--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
36317
+ '--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
36318
+ '--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
36319
+ '--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
36320
+ '--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
36321
+ '--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
36322
+ '--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
36323
+ '--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
36324
+ '--m'?: csstype.Property.Margin<string | number> | undefined;
36325
+ '--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
36326
+ '--focus-m'?: csstype.Property.Margin<string | number> | undefined;
36327
+ '--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
36328
+ '--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
36329
+ '--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
36330
+ '--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
36331
+ '--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
36332
+ '--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
36333
+ '--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
36334
+ '--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
36335
+ '--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
36336
+ '--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
36337
+ '--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
36338
+ '--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
36339
+ '--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
36340
+ '--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
36341
+ '--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
36342
+ '--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
36343
+ '--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
36344
+ '--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
36345
+ '--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
36346
+ '--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
36347
+ '--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
36348
+ '--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
36349
+ '--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
36350
+ '--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
36351
+ '--mr'?: csstype.Property.MarginRight<string | number> | undefined;
36352
+ '--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
36353
+ '--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
36354
+ '--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
36355
+ '--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
36356
+ '--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
36357
+ '--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
36358
+ '--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
36359
+ '--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
36360
+ '--mt'?: csstype.Property.MarginTop<string | number> | undefined;
36361
+ '--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
36362
+ '--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
36363
+ '--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
36364
+ '--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
36365
+ '--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
36366
+ '--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
36367
+ '--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
36368
+ '--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
36369
+ '--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
36370
+ '--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
36371
+ '--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
36372
+ '--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
36373
+ '--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
36374
+ '--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
36375
+ '--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
36376
+ '--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
36377
+ '--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
36378
+ '--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
36379
+ '--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
36380
+ '--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
36381
+ '--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
36382
+ '--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
36383
+ '--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
36384
+ '--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
36385
+ '--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
36386
+ '--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
36387
+ '--minh'?: csstype.Property.MinHeight<string | number> | undefined;
36388
+ '--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
36389
+ '--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
36390
+ '--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
36391
+ '--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
36392
+ '--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
36393
+ '--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
36394
+ '--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
36395
+ '--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
36396
+ '--minw'?: csstype.Property.MinWidth<string | number> | undefined;
36397
+ '--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
36398
+ '--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
36399
+ '--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
36400
+ '--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
36401
+ '--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
36402
+ '--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
36403
+ '--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
36404
+ '--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
36405
+ '--objf'?: csstype.Property.ObjectFit | undefined;
36406
+ '--hvr-objf'?: csstype.Property.ObjectFit | undefined;
36407
+ '--focus-objf'?: csstype.Property.ObjectFit | undefined;
36408
+ '--objf-tablet'?: csstype.Property.ObjectFit | undefined;
36409
+ '--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
36410
+ '--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
36411
+ '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
36412
+ '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
36413
+ '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
36414
+ '--op'?: csstype.Property.Opacity | undefined;
36415
+ '--hvr-op'?: csstype.Property.Opacity | undefined;
36416
+ '--focus-op'?: csstype.Property.Opacity | undefined;
36417
+ '--op-tablet'?: csstype.Property.Opacity | undefined;
36418
+ '--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
36419
+ '--focus-op-tablet'?: csstype.Property.Opacity | undefined;
36420
+ '--op-mobile'?: csstype.Property.Opacity | undefined;
36421
+ '--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
36422
+ '--focus-op-mobile'?: csstype.Property.Opacity | undefined;
36423
+ '--o'?: csstype.Property.Order | undefined;
36424
+ '--hvr-o'?: csstype.Property.Order | undefined;
36425
+ '--focus-o'?: csstype.Property.Order | undefined;
36426
+ '--o-tablet'?: csstype.Property.Order | undefined;
36427
+ '--hvr-o-tablet'?: csstype.Property.Order | undefined;
36428
+ '--focus-o-tablet'?: csstype.Property.Order | undefined;
36429
+ '--o-mobile'?: csstype.Property.Order | undefined;
36430
+ '--hvr-o-mobile'?: csstype.Property.Order | undefined;
36431
+ '--focus-o-mobile'?: csstype.Property.Order | undefined;
36432
+ '--pc'?: csstype.Property.PlaceContent | undefined;
36433
+ '--hvr-pc'?: csstype.Property.PlaceContent | undefined;
36434
+ '--focus-pc'?: csstype.Property.PlaceContent | undefined;
36435
+ '--pc-tablet'?: csstype.Property.PlaceContent | undefined;
36436
+ '--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
36437
+ '--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
36438
+ '--pc-mobile'?: csstype.Property.PlaceContent | undefined;
36439
+ '--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
36440
+ '--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
36441
+ '--p'?: csstype.Property.Padding<string | number> | undefined;
36442
+ '--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
36443
+ '--focus-p'?: csstype.Property.Padding<string | number> | undefined;
36444
+ '--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
36445
+ '--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
36446
+ '--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
36447
+ '--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
36448
+ '--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
36449
+ '--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
36450
+ '--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
36451
+ '--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
36452
+ '--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
36453
+ '--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
36454
+ '--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
36455
+ '--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
36456
+ '--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
36457
+ '--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
36458
+ '--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
36459
+ '--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
36460
+ '--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
36461
+ '--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
36462
+ '--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
36463
+ '--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
36464
+ '--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
36465
+ '--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
36466
+ '--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
36467
+ '--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
36468
+ '--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
36469
+ '--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
36470
+ '--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
36471
+ '--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
36472
+ '--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
36473
+ '--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
36474
+ '--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
36475
+ '--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
36476
+ '--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
36477
+ '--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
36478
+ '--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
36479
+ '--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
36480
+ '--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
36481
+ '--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
36482
+ '--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
36483
+ '--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
36484
+ '--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
36485
+ '--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
36486
+ '--pe'?: csstype.Property.PointerEvents | undefined;
36487
+ '--hvr-pe'?: csstype.Property.PointerEvents | undefined;
36488
+ '--focus-pe'?: csstype.Property.PointerEvents | undefined;
36489
+ '--pe-tablet'?: csstype.Property.PointerEvents | undefined;
36490
+ '--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
36491
+ '--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
36492
+ '--pe-mobile'?: csstype.Property.PointerEvents | undefined;
36493
+ '--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
36494
+ '--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
36495
+ '--pos'?: csstype.Property.Position | undefined;
36496
+ '--hvr-pos'?: csstype.Property.Position | undefined;
36497
+ '--focus-pos'?: csstype.Property.Position | undefined;
36498
+ '--pos-tablet'?: csstype.Property.Position | undefined;
36499
+ '--hvr-pos-tablet'?: csstype.Property.Position | undefined;
36500
+ '--focus-pos-tablet'?: csstype.Property.Position | undefined;
36501
+ '--pos-mobile'?: csstype.Property.Position | undefined;
36502
+ '--hvr-pos-mobile'?: csstype.Property.Position | undefined;
36503
+ '--focus-pos-mobile'?: csstype.Property.Position | undefined;
36504
+ '--right'?: csstype.Property.Right<string | number> | undefined;
36505
+ '--hvr-right'?: csstype.Property.Right<string | number> | undefined;
36506
+ '--focus-right'?: csstype.Property.Right<string | number> | undefined;
36507
+ '--right-tablet'?: csstype.Property.Right<string | number> | undefined;
36508
+ '--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
36509
+ '--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
36510
+ '--right-mobile'?: csstype.Property.Right<string | number> | undefined;
36511
+ '--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
36512
+ '--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
36513
+ '--rg'?: csstype.Property.RowGap<string | number> | undefined;
36514
+ '--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
36515
+ '--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
36516
+ '--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
36517
+ '--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
36518
+ '--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
36519
+ '--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
36520
+ '--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
36521
+ '--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
36522
+ '--ta'?: csstype.Property.TextAlign | undefined;
36523
+ '--hvr-ta'?: csstype.Property.TextAlign | undefined;
36524
+ '--focus-ta'?: csstype.Property.TextAlign | undefined;
36525
+ '--ta-tablet'?: csstype.Property.TextAlign | undefined;
36526
+ '--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
36527
+ '--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
36528
+ '--ta-mobile'?: csstype.Property.TextAlign | undefined;
36529
+ '--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
36530
+ '--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
36531
+ '--ts'?: csstype.Property.TextShadow | undefined;
36532
+ '--hvr-ts'?: csstype.Property.TextShadow | undefined;
36533
+ '--focus-ts'?: csstype.Property.TextShadow | undefined;
36534
+ '--ts-tablet'?: csstype.Property.TextShadow | undefined;
36535
+ '--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
36536
+ '--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
36537
+ '--ts-mobile'?: csstype.Property.TextShadow | undefined;
36538
+ '--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
36539
+ '--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
36540
+ '--tt'?: csstype.Property.TextTransform | undefined;
36541
+ '--hvr-tt'?: csstype.Property.TextTransform | undefined;
36542
+ '--focus-tt'?: csstype.Property.TextTransform | undefined;
36543
+ '--tt-tablet'?: csstype.Property.TextTransform | undefined;
36544
+ '--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
36545
+ '--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
36546
+ '--tt-mobile'?: csstype.Property.TextTransform | undefined;
36547
+ '--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
36548
+ '--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
36549
+ '--top'?: csstype.Property.Top<string | number> | undefined;
36550
+ '--hvr-top'?: csstype.Property.Top<string | number> | undefined;
36551
+ '--focus-top'?: csstype.Property.Top<string | number> | undefined;
36552
+ '--top-tablet'?: csstype.Property.Top<string | number> | undefined;
36553
+ '--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
36554
+ '--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
36555
+ '--top-mobile'?: csstype.Property.Top<string | number> | undefined;
36556
+ '--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
36557
+ '--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
36558
+ '--t'?: csstype.Property.Transform | undefined;
36559
+ '--hvr-t'?: csstype.Property.Transform | undefined;
36560
+ '--focus-t'?: csstype.Property.Transform | undefined;
36561
+ '--t-tablet'?: csstype.Property.Transform | undefined;
36562
+ '--hvr-t-tablet'?: csstype.Property.Transform | undefined;
36563
+ '--focus-t-tablet'?: csstype.Property.Transform | undefined;
36564
+ '--t-mobile'?: csstype.Property.Transform | undefined;
36565
+ '--hvr-t-mobile'?: csstype.Property.Transform | undefined;
36566
+ '--focus-t-mobile'?: csstype.Property.Transform | undefined;
36567
+ '--v'?: csstype.Property.Visibility | undefined;
36568
+ '--hvr-v'?: csstype.Property.Visibility | undefined;
36569
+ '--focus-v'?: csstype.Property.Visibility | undefined;
36570
+ '--v-tablet'?: csstype.Property.Visibility | undefined;
36571
+ '--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
36572
+ '--focus-v-tablet'?: csstype.Property.Visibility | undefined;
36573
+ '--v-mobile'?: csstype.Property.Visibility | undefined;
36574
+ '--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
36575
+ '--focus-v-mobile'?: csstype.Property.Visibility | undefined;
36576
+ '--w'?: csstype.Property.Width<string | number> | undefined;
36577
+ '--hvr-w'?: csstype.Property.Width<string | number> | undefined;
36578
+ '--focus-w'?: csstype.Property.Width<string | number> | undefined;
36579
+ '--w-tablet'?: csstype.Property.Width<string | number> | undefined;
36580
+ '--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
36581
+ '--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
36582
+ '--w-mobile'?: csstype.Property.Width<string | number> | undefined;
36583
+ '--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
36584
+ '--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
36585
+ '--z'?: csstype.Property.ZIndex | undefined;
36586
+ '--hvr-z'?: csstype.Property.ZIndex | undefined;
36587
+ '--focus-z'?: csstype.Property.ZIndex | undefined;
36588
+ '--z-tablet'?: csstype.Property.ZIndex | undefined;
36589
+ '--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
36590
+ '--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
36591
+ '--z-mobile'?: csstype.Property.ZIndex | undefined;
36592
+ '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
36593
+ '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
36594
+ '--wm'?: csstype.Property.WritingMode | undefined;
36595
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
36596
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
36597
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
36598
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
36599
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
36600
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
36601
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
36602
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
36603
+ accentColor?: csstype.Property.AccentColor | undefined;
36604
+ alignContent?: csstype.Property.AlignContent | undefined;
36605
+ alignItems?: csstype.Property.AlignItems | undefined;
36606
+ alignSelf?: csstype.Property.AlignSelf | undefined;
36607
+ alignTracks?: csstype.Property.AlignTracks | undefined;
36608
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
36609
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
36610
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
36611
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
36612
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
36613
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
36614
+ animationName?: csstype.Property.AnimationName | undefined;
36615
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
36616
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
36617
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
36618
+ appearance?: csstype.Property.Appearance | undefined;
36619
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
36620
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
36621
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
36622
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
36623
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
36624
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
36625
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
36626
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
36627
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
36628
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
36629
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
36630
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
36631
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
36632
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
36633
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
36634
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
36635
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
36636
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
36637
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
36638
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
36639
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
36640
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
36641
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
36642
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
36643
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
36644
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
36645
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
36646
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
36647
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
36648
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
36649
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
36650
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
36651
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
36652
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
36653
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
36654
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
36655
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
36656
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
36657
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
36658
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
36659
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
36660
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
36661
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
36662
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
36663
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
36664
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
36665
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
36666
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
36667
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
36668
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
36669
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
36670
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
36671
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
36672
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
36673
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
36674
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
36675
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
36676
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
36677
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
36678
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
36679
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
36680
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
36681
+ boxShadow?: csstype.Property.BoxShadow | undefined;
36682
+ boxSizing?: csstype.Property.BoxSizing | undefined;
36683
+ breakAfter?: csstype.Property.BreakAfter | undefined;
36684
+ breakBefore?: csstype.Property.BreakBefore | undefined;
36685
+ breakInside?: csstype.Property.BreakInside | undefined;
36686
+ captionSide?: csstype.Property.CaptionSide | undefined;
36687
+ caretColor?: csstype.Property.CaretColor | undefined;
36688
+ caretShape?: csstype.Property.CaretShape | undefined;
36689
+ clear?: csstype.Property.Clear | undefined;
36690
+ clipPath?: csstype.Property.ClipPath | undefined;
36691
+ color?: csstype.Property.Color | undefined;
36692
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
36693
+ colorScheme?: csstype.Property.ColorScheme | undefined;
36694
+ columnCount?: csstype.Property.ColumnCount | undefined;
36695
+ columnFill?: csstype.Property.ColumnFill | undefined;
36696
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
36697
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
36698
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
36699
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
36700
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
36701
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
36702
+ contain?: csstype.Property.Contain | undefined;
36703
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
36704
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
36705
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
36706
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
36707
+ containerName?: csstype.Property.ContainerName | undefined;
36708
+ containerType?: csstype.Property.ContainerType | undefined;
36709
+ content?: csstype.Property.Content | undefined;
36710
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
36711
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
36712
+ counterReset?: csstype.Property.CounterReset | undefined;
36713
+ counterSet?: csstype.Property.CounterSet | undefined;
36714
+ cursor?: csstype.Property.Cursor | undefined;
36715
+ direction?: csstype.Property.Direction | undefined;
36716
+ display?: csstype.Property.Display | undefined;
36717
+ emptyCells?: csstype.Property.EmptyCells | undefined;
36718
+ filter?: csstype.Property.Filter | undefined;
36719
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
36720
+ flexDirection?: csstype.Property.FlexDirection | undefined;
36721
+ flexGrow?: csstype.Property.FlexGrow | undefined;
36722
+ flexShrink?: csstype.Property.FlexShrink | undefined;
36723
+ flexWrap?: csstype.Property.FlexWrap | undefined;
36724
+ float?: csstype.Property.Float | undefined;
36725
+ fontFamily?: csstype.Property.FontFamily | undefined;
36726
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
36727
+ fontKerning?: csstype.Property.FontKerning | undefined;
36728
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
36729
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
36730
+ fontPalette?: csstype.Property.FontPalette | undefined;
36731
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
36732
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
36733
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
36734
+ fontStretch?: csstype.Property.FontStretch | undefined;
36735
+ fontStyle?: csstype.Property.FontStyle | undefined;
36736
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
36737
+ fontVariant?: csstype.Property.FontVariant | undefined;
36738
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
36739
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
36740
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
36741
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
36742
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
36743
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
36744
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
36745
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
36746
+ fontWeight?: csstype.Property.FontWeight | undefined;
36747
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
36748
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
36749
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
36750
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
36751
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
36752
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
36753
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
36754
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
36755
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
36756
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36757
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
36758
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
36759
+ height?: csstype.Property.Height<string | number> | undefined;
36760
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
36761
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
36762
+ hyphens?: csstype.Property.Hyphens | undefined;
36763
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
36764
+ imageRendering?: csstype.Property.ImageRendering | undefined;
36765
+ imageResolution?: csstype.Property.ImageResolution | undefined;
36766
+ initialLetter?: csstype.Property.InitialLetter | undefined;
36767
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
36768
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
36769
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
36770
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
36771
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
36772
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
36773
+ isolation?: csstype.Property.Isolation | undefined;
36774
+ justifyContent?: csstype.Property.JustifyContent | undefined;
36775
+ justifyItems?: csstype.Property.JustifyItems | undefined;
36776
+ justifySelf?: csstype.Property.JustifySelf | undefined;
36777
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
36778
+ left?: csstype.Property.Left<string | number> | undefined;
36779
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
36780
+ lineBreak?: csstype.Property.LineBreak | undefined;
36781
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
36782
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
36783
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
36784
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
36785
+ listStyleType?: csstype.Property.ListStyleType | undefined;
36786
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
36787
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
36788
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
36789
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
36790
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
36791
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
36792
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
36793
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
36794
+ marginTrim?: csstype.Property.MarginTrim | undefined;
36795
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
36796
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
36797
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
36798
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
36799
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
36800
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
36801
+ maskClip?: csstype.Property.MaskClip | undefined;
36802
+ maskComposite?: csstype.Property.MaskComposite | undefined;
36803
+ maskImage?: csstype.Property.MaskImage | undefined;
36804
+ maskMode?: csstype.Property.MaskMode | undefined;
36805
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
36806
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
36807
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
36808
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
36809
+ maskType?: csstype.Property.MaskType | undefined;
36810
+ mathDepth?: csstype.Property.MathDepth | undefined;
36811
+ mathShift?: csstype.Property.MathShift | undefined;
36812
+ mathStyle?: csstype.Property.MathStyle | undefined;
36813
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
36814
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
36815
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
36816
+ maxLines?: csstype.Property.MaxLines | undefined;
36817
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
36818
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
36819
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
36820
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
36821
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
36822
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
36823
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
36824
+ motionPath?: csstype.Property.OffsetPath | undefined;
36825
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
36826
+ objectFit?: csstype.Property.ObjectFit | undefined;
36827
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
36828
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
36829
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
36830
+ offsetPath?: csstype.Property.OffsetPath | undefined;
36831
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
36832
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
36833
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
36834
+ opacity?: csstype.Property.Opacity | undefined;
36835
+ order?: csstype.Property.Order | undefined;
36836
+ orphans?: csstype.Property.Orphans | undefined;
36837
+ outlineColor?: csstype.Property.OutlineColor | undefined;
36838
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
36839
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
36840
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
36841
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
36842
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
36843
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
36844
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
36845
+ overflowInline?: csstype.Property.OverflowInline | undefined;
36846
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
36847
+ overflowX?: csstype.Property.OverflowX | undefined;
36848
+ overflowY?: csstype.Property.OverflowY | undefined;
36849
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
36850
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
36851
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
36852
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
36853
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
36854
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
36855
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
36856
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
36857
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
36858
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
36859
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
36860
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
36861
+ page?: csstype.Property.Page | undefined;
36862
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
36863
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
36864
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
36865
+ paintOrder?: csstype.Property.PaintOrder | undefined;
36866
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
36867
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
36868
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
36869
+ position?: csstype.Property.Position | undefined;
36870
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
36871
+ quotes?: csstype.Property.Quotes | undefined;
36872
+ resize?: csstype.Property.Resize | undefined;
36873
+ right?: csstype.Property.Right<string | number> | undefined;
36874
+ rotate?: csstype.Property.Rotate | undefined;
36875
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
36876
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
36877
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
36878
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
36879
+ scale?: csstype.Property.Scale | undefined;
36880
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
36881
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
36882
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
36883
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
36884
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
36885
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
36886
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
36887
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
36888
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
36889
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
36890
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
36891
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
36892
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
36893
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
36894
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
36895
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
36896
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
36897
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
36898
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
36899
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
36900
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
36901
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
36902
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
36903
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
36904
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
36905
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
36906
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
36907
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
36908
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
36909
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
36910
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
36911
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
36912
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
36913
+ tableLayout?: csstype.Property.TableLayout | undefined;
36914
+ textAlign?: csstype.Property.TextAlign | undefined;
36915
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
36916
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
36917
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
36918
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
36919
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
36920
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
36921
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
36922
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
36923
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
36924
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
36925
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
36926
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
36927
+ textJustify?: csstype.Property.TextJustify | undefined;
36928
+ textOrientation?: csstype.Property.TextOrientation | undefined;
36929
+ textOverflow?: csstype.Property.TextOverflow | undefined;
36930
+ textRendering?: csstype.Property.TextRendering | undefined;
36931
+ textShadow?: csstype.Property.TextShadow | undefined;
36932
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
36933
+ textTransform?: csstype.Property.TextTransform | undefined;
36934
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
36935
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
36936
+ top?: csstype.Property.Top<string | number> | undefined;
36937
+ touchAction?: csstype.Property.TouchAction | undefined;
36938
+ transform?: csstype.Property.Transform | undefined;
36939
+ transformBox?: csstype.Property.TransformBox | undefined;
36940
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
36941
+ transformStyle?: csstype.Property.TransformStyle | undefined;
36942
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
36943
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
36944
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
36945
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
36946
+ translate?: csstype.Property.Translate<string | number> | undefined;
36947
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
36948
+ userSelect?: csstype.Property.UserSelect | undefined;
36949
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
36950
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
36951
+ visibility?: csstype.Property.Visibility | undefined;
36952
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
36953
+ widows?: csstype.Property.Widows | undefined;
36954
+ width?: csstype.Property.Width<string | number> | undefined;
36955
+ willChange?: csstype.Property.WillChange | undefined;
36956
+ wordBreak?: csstype.Property.WordBreak | undefined;
36957
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
36958
+ wordWrap?: csstype.Property.WordWrap | undefined;
36959
+ writingMode?: csstype.Property.WritingMode | undefined;
36960
+ zIndex?: csstype.Property.ZIndex | undefined;
36961
+ zoom?: csstype.Property.Zoom | undefined;
36962
+ all?: csstype.Globals | undefined;
36963
+ animation?: csstype.Property.Animation<string & {}> | undefined;
36964
+ background?: csstype.Property.Background<string | number> | undefined;
36965
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
36966
+ border?: csstype.Property.Border<string | number> | undefined;
36967
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
36968
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
36969
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
36970
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
36971
+ borderColor?: csstype.Property.BorderColor | undefined;
36972
+ borderImage?: csstype.Property.BorderImage | undefined;
36973
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
36974
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
36975
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
36976
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
36977
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
36978
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
36979
+ borderStyle?: csstype.Property.BorderStyle | undefined;
36980
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
36981
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
36982
+ caret?: csstype.Property.Caret | undefined;
36983
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
36984
+ columns?: csstype.Property.Columns<string | number> | undefined;
36985
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
36986
+ container?: csstype.Property.Container | undefined;
36987
+ flex?: csstype.Property.Flex<string | number> | undefined;
36988
+ flexFlow?: csstype.Property.FlexFlow | undefined;
36989
+ font?: csstype.Property.Font | undefined;
36990
+ gap?: csstype.Property.Gap<string | number> | undefined;
36991
+ grid?: csstype.Property.Grid | undefined;
36992
+ gridArea?: csstype.Property.GridArea | undefined;
36993
+ gridColumn?: csstype.Property.GridColumn | undefined;
36994
+ gridRow?: csstype.Property.GridRow | undefined;
36995
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
36996
+ inset?: csstype.Property.Inset<string | number> | undefined;
36997
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
36998
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
36999
+ lineClamp?: csstype.Property.LineClamp | undefined;
37000
+ listStyle?: csstype.Property.ListStyle | undefined;
37001
+ margin?: csstype.Property.Margin<string | number> | undefined;
37002
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
37003
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
37004
+ mask?: csstype.Property.Mask<string | number> | undefined;
37005
+ maskBorder?: csstype.Property.MaskBorder | undefined;
37006
+ motion?: csstype.Property.Offset<string | number> | undefined;
37007
+ offset?: csstype.Property.Offset<string | number> | undefined;
37008
+ outline?: csstype.Property.Outline<string | number> | undefined;
37009
+ overflow?: csstype.Property.Overflow | undefined;
37010
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
37011
+ padding?: csstype.Property.Padding<string | number> | undefined;
37012
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
37013
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
37014
+ placeContent?: csstype.Property.PlaceContent | undefined;
37015
+ placeItems?: csstype.Property.PlaceItems | undefined;
37016
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
37017
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
37018
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
37019
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
37020
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
37021
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
37022
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
37023
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
37024
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
37025
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
37026
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
37027
+ transition?: csstype.Property.Transition<string & {}> | undefined;
37028
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
37029
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
37030
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
37031
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
37032
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
37033
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
37034
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
37035
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
37036
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
37037
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
37038
+ MozBinding?: csstype.Property.MozBinding | undefined;
37039
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
37040
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
37041
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
37042
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
37043
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
37044
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
37045
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
37046
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
37047
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
37048
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
37049
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
37050
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
37051
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
37052
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
37053
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
37054
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
37055
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
37056
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
37057
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
37058
+ MozHyphens?: csstype.Property.Hyphens | undefined;
37059
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
37060
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
37061
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
37062
+ MozOrient?: csstype.Property.MozOrient | undefined;
37063
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
37064
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
37065
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
37066
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
37067
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
37068
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
37069
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
37070
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
37071
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
37072
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37073
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
37074
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37075
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37076
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37077
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37078
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
37079
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
37080
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
37081
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
37082
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
37083
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
37084
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
37085
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
37086
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
37087
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
37088
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
37089
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
37090
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
37091
+ msFilter?: csstype.Property.MsFilter | undefined;
37092
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
37093
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
37094
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
37095
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
37096
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
37097
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
37098
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
37099
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
37100
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
37101
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
37102
+ msHyphens?: csstype.Property.Hyphens | undefined;
37103
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
37104
+ msLineBreak?: csstype.Property.LineBreak | undefined;
37105
+ msOrder?: csstype.Property.Order | undefined;
37106
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
37107
+ msOverflowX?: csstype.Property.OverflowX | undefined;
37108
+ msOverflowY?: csstype.Property.OverflowY | undefined;
37109
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
37110
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
37111
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
37112
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
37113
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
37114
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
37115
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
37116
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
37117
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
37118
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
37119
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
37120
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
37121
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
37122
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
37123
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
37124
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
37125
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
37126
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
37127
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
37128
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
37129
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
37130
+ msTouchAction?: csstype.Property.TouchAction | undefined;
37131
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
37132
+ msTransform?: csstype.Property.Transform | undefined;
37133
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37134
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37135
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37136
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37137
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37138
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
37139
+ msWordBreak?: csstype.Property.WordBreak | undefined;
37140
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
37141
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
37142
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
37143
+ msWritingMode?: csstype.Property.WritingMode | undefined;
37144
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
37145
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
37146
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
37147
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
37148
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
37149
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
37150
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
37151
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
37152
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
37153
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
37154
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
37155
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
37156
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
37157
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
37158
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
37159
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
37160
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
37161
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
37162
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
37163
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
37164
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37165
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37166
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
37167
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37168
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37169
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
37170
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
37171
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
37172
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
37173
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
37174
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
37175
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
37176
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
37177
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
37178
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
37179
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
37180
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
37181
+ WebkitFilter?: csstype.Property.Filter | undefined;
37182
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
37183
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
37184
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
37185
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
37186
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
37187
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
37188
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
37189
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
37190
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
37191
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
37192
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
37193
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
37194
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
37195
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
37196
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
37197
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
37198
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
37199
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
37200
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
37201
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
37202
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
37203
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
37204
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
37205
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
37206
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
37207
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
37208
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
37209
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
37210
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
37211
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
37212
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
37213
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
37214
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
37215
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
37216
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
37217
+ WebkitOrder?: csstype.Property.Order | undefined;
37218
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
37219
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
37220
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
37221
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
37222
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
37223
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
37224
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
37225
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
37226
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
37227
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
37228
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
37229
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
37230
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
37231
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
37232
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
37233
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
37234
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
37235
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
37236
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
37237
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
37238
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
37239
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
37240
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
37241
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
37242
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
37243
+ WebkitTransform?: csstype.Property.Transform | undefined;
37244
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37245
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
37246
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37247
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37248
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37249
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37250
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
37251
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
37252
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
37253
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
37254
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
37255
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
37256
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
37257
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
37258
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
37259
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
37260
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
37261
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
37262
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
37263
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
37264
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
37265
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
37266
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
37267
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
37268
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
37269
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
37270
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
37271
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
37272
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
37273
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
37274
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
37275
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
37276
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
37277
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
37278
+ azimuth?: csstype.Property.Azimuth | undefined;
37279
+ boxAlign?: csstype.Property.BoxAlign | undefined;
37280
+ boxDirection?: csstype.Property.BoxDirection | undefined;
37281
+ boxFlex?: csstype.Property.BoxFlex | undefined;
37282
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
37283
+ boxLines?: csstype.Property.BoxLines | undefined;
37284
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37285
+ boxOrient?: csstype.Property.BoxOrient | undefined;
37286
+ boxPack?: csstype.Property.BoxPack | undefined;
37287
+ clip?: csstype.Property.Clip | undefined;
37288
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
37289
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
37290
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
37291
+ imeMode?: csstype.Property.ImeMode | undefined;
37292
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
37293
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
37294
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
37295
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
37296
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
37297
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
37298
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
37299
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
37300
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
37301
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
37302
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
37303
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
37304
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
37305
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
37306
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
37307
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
37308
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
37309
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37310
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
37311
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
37312
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
37313
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
37314
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
37315
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
37316
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
37317
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
37318
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
37319
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
37320
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37321
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37322
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37323
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37324
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
37325
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
37326
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
37327
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37328
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
37329
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
37330
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
37331
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
37332
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
37333
+ MozOpacity?: csstype.Property.Opacity | undefined;
37334
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
37335
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
37336
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
37337
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
37338
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
37339
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
37340
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
37341
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
37342
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
37343
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
37344
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
37345
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
37346
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
37347
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
37348
+ msImeMode?: csstype.Property.ImeMode | undefined;
37349
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
37350
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
37351
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
37352
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
37353
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
37354
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
37355
+ OAnimationName?: csstype.Property.AnimationName | undefined;
37356
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
37357
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
37358
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
37359
+ OBorderImage?: csstype.Property.BorderImage | undefined;
37360
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
37361
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
37362
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
37363
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
37364
+ OTransform?: csstype.Property.Transform | undefined;
37365
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
37366
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
37367
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
37368
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
37369
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
37370
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
37371
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
37372
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
37373
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
37374
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
37375
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
37376
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
37377
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
37378
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
37379
+ WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
37380
+ WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
37381
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
37382
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
37383
+ clipRule?: csstype.Property.ClipRule | undefined;
37384
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
37385
+ colorRendering?: csstype.Property.ColorRendering | undefined;
37386
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
37387
+ fill?: csstype.Property.Fill | undefined;
37388
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
37389
+ fillRule?: csstype.Property.FillRule | undefined;
37390
+ floodColor?: csstype.Property.FloodColor | undefined;
37391
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
37392
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
37393
+ lightingColor?: csstype.Property.LightingColor | undefined;
37394
+ marker?: csstype.Property.Marker | undefined;
37395
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
37396
+ markerMid?: csstype.Property.MarkerMid | undefined;
37397
+ markerStart?: csstype.Property.MarkerStart | undefined;
37398
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
37399
+ stopColor?: csstype.Property.StopColor | undefined;
37400
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
37401
+ stroke?: csstype.Property.Stroke | undefined;
37402
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
37403
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
37404
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
37405
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
37406
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
37407
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
37408
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
37409
+ textAnchor?: csstype.Property.TextAnchor | undefined;
37410
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
37411
+ } | undefined;
35677
37412
  declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
35678
37413
  hasBoxShadow?: boolean | undefined;
35679
37414
  boxShadowValue?: ShadowProps | undefined;
@@ -36039,6 +37774,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
36039
37774
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36040
37775
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36041
37776
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
37777
+ '--gr'?: csstype.Property.GridRow | undefined;
37778
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
37779
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
37780
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
37781
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
37782
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
37783
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
37784
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
37785
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
36042
37786
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36043
37787
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36044
37788
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -37532,6 +39276,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
37532
39276
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
37533
39277
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
37534
39278
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
39279
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
37535
39280
  };
37536
39281
 
37537
39282
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
@@ -37550,4 +39295,4 @@ declare const getAppBlocks: (section: PublishedPageSection$1 & {
37550
39295
 
37551
39296
  declare const addAppBlockId: (component: Component) => Component;
37552
39297
 
37553
- 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 };
39298
+ 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 };