/**
* Auto generated file by copying from node_modules, do not modify it!
* Fix karma error "Can't find csstype [undefined] (required by ..."
*/
export {};
export declare type PropertyValue<TValue> = TValue extends Array<infer AValue> ? Array<AValue extends infer TUnpacked & {} ? TUnpacked : AValue> : TValue extends infer TUnpacked & {} ? TUnpacked : TValue;
export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
     *
     * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **29**  | **28**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-content
     */
    alignContent?: Property.AlignContent;
    /**
     * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
     *
     * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :------: | :-----: | :-----: | :----: | :----: |
     * |  **52**  | **20**  |  **9**  | **12** | **11** |
     * | 21 _-x-_ |         | 7 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-items
     */
    alignItems?: Property.AlignItems;
    /**
     * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **36**  | **20**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  |      IE      |
     * | :----: | :-----: | :------: | :----: | :----------: |
     * | **57** | **52**  | **10.1** | **16** | **10** _-x-_ |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-self
     */
    alignSelf?: Property.AlignSelf;
    /**
     * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
     *
     * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   n/a   |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-tracks
     */
    alignTracks?: Property.AlignTracks;
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
     */
    animationDelay?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
     */
    animationDirection?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
     */
    animationDuration?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
     */
    animationFillMode?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count
     */
    animationIterationCount?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-name
     */
    animationName?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
     */
    animationPlayState?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
     */
    animationTimingFunction?: Property.AnimationTimingFunction;
    /**
     * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
     *
     * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox |   Safari    |   Edge   | IE  |
     * | :-----: | :-----: | :---------: | :------: | :-: |
     * | **84**  | **80**  | **3** _-x-_ |  **84**  | No  |
     * | 1 _-x-_ | 1 _-x-_ |             | 12 _-x-_ |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/appearance
     */
    appearance?: Property.Appearance;
    /**
     * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.
     *
     * **Syntax**: `auto | <ratio>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **88** |   n/a   |   No   | **88** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
     */
    aspectRatio?: Property.AspectRatio;
    /**
     * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |   Safari    |  Edge  | IE  |
     * | :----: | :-----: | :---------: | :----: | :-: |
     * | **76** |   n/a   | **9** _-x-_ | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter
     */
    backdropFilter?: Property.BackdropFilter;
    /**
     * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
     *
     * **Syntax**: `visible | hidden`
     *
     * **Initial value**: `visible`
     *
     * |  Chrome  | Firefox  |    Safari     |  Edge  |   IE   |
     * | :------: | :------: | :-----------: | :----: | :----: |
     * |  **36**  |  **16**  | **5.1** _-x-_ | **12** | **10** |
     * | 12 _-x-_ | 10 _-x-_ |               |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
     */
    backfaceVisibility?: Property.BackfaceVisibility;
    /**
     * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
     *
     * **Syntax**: `<attachment>#`
     *
     * **Initial value**: `scroll`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
     */
    backgroundAttachment?: Property.BackgroundAttachment;
    /**
     * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.
     *
     * **Syntax**: `<blend-mode>#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **35** | **30**  | **8**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode
     */
    backgroundBlendMode?: Property.BackgroundBlendMode;
    /**
     * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `border-box`
     *
     * | Chrome | Firefox |   Safari    |  Edge  |  IE   |
     * | :----: | :-----: | :---------: | :----: | :---: |
     * | **1**  |  **4**  | **3** _-x-_ | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
     */
    backgroundClip?: Property.BackgroundClip;
    /**
     * The **`background-color`** CSS property sets the background color of an element.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `transparent`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-color
     */
    backgroundColor?: Property.BackgroundColor;
    /**
     * The **`background-image`** CSS property sets one or more background images on an element.
     *
     * **Syntax**: `<bg-image>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-image
     */
    backgroundImage?: Property.BackgroundImage;
    /**
     * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `padding-box`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **4**  | **3**  | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-origin
     */
    backgroundOrigin?: Property.BackgroundOrigin;
    /**
     * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.
     *
     * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`
     *
     * **Initial value**: `left`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **49**  | **1**  | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
     */
    backgroundPositionX?: Property.BackgroundPositionX<TLength>;
    /**
     * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.
     *
     * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`
     *
     * **Initial value**: `top`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **49**  | **1**  | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
     */
    backgroundPositionY?: Property.BackgroundPositionY<TLength>;
    /**
     * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.
     *
     * **Syntax**: `<repeat-style>#`
     *
     * **Initial value**: `repeat`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
     */
    backgroundRepeat?: Property.BackgroundRepeat;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **3**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-size
     */
    backgroundSize?: Property.BackgroundSize<TLength>;
    /**
     * **Syntax**: `clip | ellipsis | <string>`
     *
     * **Initial value**: `clip`
     */
    blockOverflow?: Property.BlockOverflow;
    /**
     * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'width'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/block-size
     */
    blockSize?: Property.BlockSize<TLength>;
    /**
     * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>{1,2}`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
     */
    borderBlockColor?: Property.BorderBlockColor;
    /**
     * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
     */
    borderBlockEndColor?: Property.BorderBlockEndColor;
    /**
     * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
     */
    borderBlockEndStyle?: Property.BorderBlockEndStyle;
    /**
     * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
     */
    borderBlockEndWidth?: Property.BorderBlockEndWidth<TLength>;
    /**
     * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
     */
    borderBlockStartColor?: Property.BorderBlockStartColor;
    /**
     * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
     */
    borderBlockStartStyle?: Property.BorderBlockStartStyle;
    /**
     * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
     */
    borderBlockStartWidth?: Property.BorderBlockStartWidth<TLength>;
    /**
     * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
     */
    borderBlockStyle?: Property.BorderBlockStyle;
    /**
     * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
     */
    borderBlockWidth?: Property.BorderBlockWidth<TLength>;
    /**
     * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
     */
    borderBottomColor?: Property.BorderBottomColor;
    /**
     * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
     */
    borderBottomLeftRadius?: Property.BorderBottomLeftRadius<TLength>;
    /**
     * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
     */
    borderBottomRightRadius?: Property.BorderBottomRightRadius<TLength>;
    /**
     * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
     */
    borderBottomStyle?: Property.BorderBottomStyle;
    /**
     * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
     */
    borderBottomWidth?: Property.BorderBottomWidth<TLength>;
    /**
     * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
     *
     * **Syntax**: `collapse | separate`
     *
     * **Initial value**: `separate`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
     */
    borderCollapse?: Property.BorderCollapse;
    /**
     * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
     */
    borderEndEndRadius?: Property.BorderEndEndRadius<TLength>;
    /**
     * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
     */
    borderEndStartRadius?: Property.BorderEndStartRadius<TLength>;
    /**
     * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.
     *
     * **Syntax**: `[ <length> | <number> ]{1,4}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
     */
    borderImageOutset?: Property.BorderImageOutset<TLength>;
    /**
     * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.
     *
     * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
     *
     * **Initial value**: `stretch`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
     */
    borderImageRepeat?: Property.BorderImageRepeat;
    /**
     * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
     *
     * **Syntax**: `<number-percentage>{1,4} && fill?`
     *
     * **Initial value**: `100%`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
     */
    borderImageSlice?: Property.BorderImageSlice;
    /**
     * The **`border-image-source`** CSS property sets the source image used to create an element's border image.
     *
     * **Syntax**: `none | <image>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
     */
    borderImageSource?: Property.BorderImageSource;
    /**
     * The **`border-image-width`** CSS property sets the width of an element's border image.
     *
     * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
     *
     * **Initial value**: `1`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **13**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
     */
    borderImageWidth?: Property.BorderImageWidth<TLength>;
    /**
     * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>{1,2}`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
     */
    borderInlineColor?: Property.BorderInlineColor;
    /**
     * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome |           Firefox           |  Safari  |  Edge  | IE  |
     * | :----: | :-------------------------: | :------: | :----: | :-: |
     * | **69** |           **41**            | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-end-color)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
     */
    borderInlineEndColor?: Property.BorderInlineEndColor;
    /**
     * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome |           Firefox           |  Safari  |  Edge  | IE  |
     * | :----: | :-------------------------: | :------: | :----: | :-: |
     * | **69** |           **41**            | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-end-style)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
     */
    borderInlineEndStyle?: Property.BorderInlineEndStyle;
    /**
     * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome |           Firefox           |  Safari  |  Edge  | IE  |
     * | :----: | :-------------------------: | :------: | :----: | :-: |
     * | **69** |           **41**            | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-end-width)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
     */
    borderInlineEndWidth?: Property.BorderInlineEndWidth<TLength>;
    /**
     * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome |            Firefox            |  Safari  |  Edge  | IE  |
     * | :----: | :---------------------------: | :------: | :----: | :-: |
     * | **69** |            **41**             | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-start-color)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
     */
    borderInlineStartColor?: Property.BorderInlineStartColor;
    /**
     * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome |            Firefox            |  Safari  |  Edge  | IE  |
     * | :----: | :---------------------------: | :------: | :----: | :-: |
     * | **69** |            **41**             | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-start-style)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
     */
    borderInlineStartStyle?: Property.BorderInlineStartStyle;
    /**
     * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
     */
    borderInlineStartWidth?: Property.BorderInlineStartWidth<TLength>;
    /**
     * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
     */
    borderInlineStyle?: Property.BorderInlineStyle;
    /**
     * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
     */
    borderInlineWidth?: Property.BorderInlineWidth<TLength>;
    /**
     * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
     */
    borderLeftColor?: Property.BorderLeftColor;
    /**
     * The **`border-left-style`** CSS property sets the line style of an element's left `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
     */
    borderLeftStyle?: Property.BorderLeftStyle;
    /**
     * The **`border-left-width`** CSS property sets the width of the left border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
     */
    borderLeftWidth?: Property.BorderLeftWidth<TLength>;
    /**
     * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color
     */
    borderRightColor?: Property.BorderRightColor;
    /**
     * The **`border-right-style`** CSS property sets the line style of an element's right `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style
     */
    borderRightStyle?: Property.BorderRightStyle;
    /**
     * The **`border-right-width`** CSS property sets the width of the right border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width
     */
    borderRightWidth?: Property.BorderRightWidth<TLength>;
    /**
     * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.
     *
     * **Syntax**: `<length> <length>?`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
     */
    borderSpacing?: Property.BorderSpacing<TLength>;
    /**
     * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
     */
    borderStartEndRadius?: Property.BorderStartEndRadius<TLength>;
    /**
     * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
     */
    borderStartStartRadius?: Property.BorderStartStartRadius<TLength>;
    /**
     * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color
     */
    borderTopColor?: Property.BorderTopColor;
    /**
     * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
     */
    borderTopLeftRadius?: Property.BorderTopLeftRadius<TLength>;
    /**
     * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
     */
    borderTopRightRadius?: Property.BorderTopRightRadius<TLength>;
    /**
     * The **`border-top-style`** CSS property sets the line style of an element's top `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style
     */
    borderTopStyle?: Property.BorderTopStyle;
    /**
     * The **`border-top-width`** CSS property sets the width of the top border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width
     */
    borderTopWidth?: Property.BorderTopWidth<TLength>;
    /**
     * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/bottom
     */
    bottom?: Property.Bottom<TLength>;
    /**
     * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
     *
     * **Syntax**: `slice | clone`
     *
     * **Initial value**: `slice`
     *
     * |    Chrome    | Firefox |    Safari     |     Edge     | IE  |
     * | :----------: | :-----: | :-----------: | :----------: | :-: |
     * | **22** _-x-_ | **32**  | **6.1** _-x-_ | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
     */
    boxDecorationBreak?: Property.BoxDecorationBreak;
    /**
     * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
     *
     * **Syntax**: `none | <shadow>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * | **10**  |  **4**  | **5.1** | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
     */
    boxShadow?: Property.BoxShadow;
    /**
     * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
     *
     * **Syntax**: `content-box | border-box`
     *
     * **Initial value**: `content-box`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * | **10**  | **29**  | **5.1** | **12** | **8** |
     * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing
     */
    boxSizing?: Property.BoxSizing;
    /**
     * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.
     *
     * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  |   No   | **12** | **10** |
     *
     * ---
     *
     * _Supported in Paged Media_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/break-after
     */
    breakAfter?: Property.BreakAfter;
    /**
     * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.
     *
     * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  |   No   | **12** | **10** |
     *
     * ---
     *
     * _Supported in Paged Media_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/break-before
     */
    breakBefore?: Property.BreakBefore;
    /**
     * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.
     *
     * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * _Supported in Paged Media_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/break-inside
     */
    breakInside?: Property.BreakInside;
    /**
     * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.
     *
     * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`
     *
     * **Initial value**: `top`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/caption-side
     */
    captionSide?: Property.CaptionSide;
    /**
     * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.
     *
     * **Syntax**: `auto | <color>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **53**  | **11.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/caret-color
     */
    caretColor?: Property.CaretColor;
    /**
     * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.
     *
     * **Syntax**: `none | left | right | both | inline-start | inline-end`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/clear
     */
    clear?: Property.Clear;
    /**
     * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
     *
     * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
     *
     * **Initial value**: `none`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **55**  | **3.5** |  **9.1**  | **12** | **10** |
     * | 23 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
     */
    clipPath?: Property.ClipPath;
    /**
     * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: Varies from one browser to another
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/color
     */
    color?: Property.Color;
    /**
     * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
     *
     * **Syntax**: `economy | exact`
     *
     * **Initial value**: `economy`
     *
     * |                Chrome                 | Firefox |                Safari                |                 Edge                  | IE  |
     * | :-----------------------------------: | :-----: | :----------------------------------: | :-----------------------------------: | :-: |
     * | **49** _(-webkit-print-color-adjust)_ | **48**  | **6** _(-webkit-print-color-adjust)_ | **79** _(-webkit-print-color-adjust)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust
     */
    colorAdjust?: Property.ColorAdjust;
    /**
     * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
     *
     * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **81** |   No    | **13** | **81** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
     */
    colorScheme?: Property.ColorScheme;
    /**
     * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
     *
     * **Syntax**: `<integer> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-count
     */
    columnCount?: Property.ColumnCount;
    /**
     * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
     *
     * **Syntax**: `auto | balance | balance-all`
     *
     * **Initial value**: `balance`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE   |
     * | :----: | :-----: | :-----: | :----: | :----: |
     * | **50** | **52**  |  **9**  | **12** | **10** |
     * |        |         | 8 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-fill
     */
    columnFill?: Property.ColumnFill;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **84** | **63**  |   No   | **84** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * |         Chrome         |        Firefox         |          Safari          |  Edge  | IE  |
     * | :--------------------: | :--------------------: | :----------------------: | :----: | :-: |
     * |         **66**         |         **61**         |         **12.1**         | **16** | No  |
     * | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ |        |     |
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  | **10**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
     */
    columnGap?: Property.ColumnGap<TLength>;
    /**
     * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color
     */
    columnRuleColor?: Property.ColumnRuleColor;
    /**
     * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style
     */
    columnRuleStyle?: Property.ColumnRuleStyle;
    /**
     * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width
     */
    columnRuleWidth?: Property.ColumnRuleWidth<TLength>;
    /**
     * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
     *
     * **Syntax**: `none | all`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **50**  | **71**  |   **9**   | **12** | **10** |
     * | 6 _-x-_ |         | 5.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-span
     */
    columnSpan?: Property.ColumnSpan;
    /**
     * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
     *
     * **Syntax**: `<length> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **50**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-width
     */
    columnWidth?: Property.ColumnWidth<TLength>;
    /**
     * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.
     *
     * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **52** | **69**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/contain
     */
    contain?: Property.Contain;
    /**
     * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._
     *
     * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/content
     */
    content?: Property.Content;
    /**
     * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.
     *
     * **Syntax**: `visible | auto | hidden`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **85** |   No    |   No   | **85** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
     */
    contentVisibility?: Property.ContentVisibility;
    /**
     * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.
     *
     * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **2**  |  **1**  | **3**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment
     */
    counterIncrement?: Property.CounterIncrement;
    /**
     * The **`counter-reset`** CSS property resets a CSS counter to a given value.
     *
     * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **2**  |  **1**  | **3**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset
     */
    counterReset?: Property.CounterReset;
    /**
     * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.
     *
     * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **85** | **68**  |   No   | **85** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
     */
    counterSet?: Property.CounterSet;
    /**
     * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.
     *
     * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/cursor
     */
    cursor?: Property.Cursor;
    /**
     * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).
     *
     * **Syntax**: `ltr | rtl`
     *
     * **Initial value**: `ltr`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **2**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/direction
     */
    direction?: Property.Direction;
    /**
     * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.
     *
     * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`
     *
     * **Initial value**: `inline`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/display
     */
    display?: Property.Display;
    /**
     * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
     *
     * **Syntax**: `show | hide`
     *
     * **Initial value**: `show`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
     */
    emptyCells?: Property.EmptyCells;
    /**
     * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  | IE  |
     * | :------: | :-----: | :-----: | :----: | :-: |
     * |  **53**  | **35**  | **9.1** | **12** | No  |
     * | 18 _-x-_ |         | 6 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/filter
     */
    filter?: Property.Filter;
    /**
     * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
     *
     * **Syntax**: `content | <'width'>`
     *
     * **Initial value**: `auto`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :------: | :-----: | :-----: | :----: | :----: |
     * |  **29**  | **22**  |  **9**  | **12** | **11** |
     * | 22 _-x-_ |         | 7 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis
     */
    flexBasis?: Property.FlexBasis<TLength>;
    /**
     * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
     *
     * **Syntax**: `row | row-reverse | column | column-reverse`
     *
     * **Initial value**: `row`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |    IE    |
     * | :------: | :-----: | :-----: | :----: | :------: |
     * |  **29**  | **20**  |  **9**  | **12** |  **11**  |
     * | 21 _-x-_ |         | 7 _-x-_ |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction
     */
    flexDirection?: Property.FlexDirection;
    /**
     * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |            IE            |
     * | :------: | :-----: | :-------: | :----: | :----------------------: |
     * |  **29**  | **20**  |   **9**   | **12** |          **11**          |
     * | 22 _-x-_ |         | 6.1 _-x-_ |        | 10 _(-ms-flex-positive)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
     */
    flexGrow?: Property.FlexGrow;
    /**
     * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `1`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :------: | :-----: | :-----: | :----: | :----: |
     * |  **29**  | **20**  |  **9**  | **12** | **10** |
     * | 22 _-x-_ |         | 8 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink
     */
    flexShrink?: Property.FlexShrink;
    /**
     * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
     *
     * **Syntax**: `nowrap | wrap | wrap-reverse`
     *
     * **Initial value**: `nowrap`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **29**  | **28**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
     */
    flexWrap?: Property.FlexWrap;
    /**
     * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).
     *
     * **Syntax**: `left | right | none | inline-start | inline-end`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/float
     */
    float?: Property.Float;
    /**
     * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.
     *
     * **Syntax**: `[ <family-name> | <generic-family> ]#`
     *
     * **Initial value**: depends on user agent
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-family
     */
    fontFamily?: Property.FontFamily;
    /**
     * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
     *
     * **Syntax**: `normal | <feature-tag-value>#`
     *
     * **Initial value**: `normal`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  |   IE   |
     * | :------: | :------: | :-----: | :----: | :----: |
     * |  **48**  |  **34**  | **9.1** | **15** | **10** |
     * | 16 _-x-_ | 15 _-x-_ |         |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings
     */
    fontFeatureSettings?: Property.FontFeatureSettings;
    /**
     * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
     *
     * **Syntax**: `auto | normal | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **33** | **32**  |  **9**  | **79** | No  |
     * |        |         | 6 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning
     */
    fontKerning?: Property.FontKerning;
    /**
     * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
     *
     * **Syntax**: `normal | <string>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **34**  |   No   |  No  | No  |
     * |        | 4 _-x-_ |        |      |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override
     */
    fontLanguageOverride?: Property.FontLanguageOverride;
    /**
     * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.
     *
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **79** | **62**  | **11** | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing
     */
    fontOpticalSizing?: Property.FontOpticalSizing;
    /**
     * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.
     *
     * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-size
     */
    fontSize?: Property.FontSize<TLength>;
    /**
     * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
     *
     * **Syntax**: `none | <number>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |  **1**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust
     */
    fontSizeAdjust?: Property.FontSizeAdjust;
    /**
     * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
     *
     * **Syntax**: `auto | never | always | <absolute-size> | <length>`
     *
     * **Initial value**: `auto`
     *
     * |              Chrome              |              Firefox               |              Safari              |               Edge                | IE  |
     * | :------------------------------: | :--------------------------------: | :------------------------------: | :-------------------------------: | :-: |
     * | **5** _(-webkit-font-smoothing)_ | **25** _(-moz-osx-font-smoothing)_ | **4** _(-webkit-font-smoothing)_ | **79** _(-webkit-font-smoothing)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-smooth
     */
    fontSmooth?: Property.FontSmooth<TLength>;
    /**
     * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.
     *
     * **Syntax**: `<font-stretch-absolute>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **60** |  **9**  | **11** | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
     */
    fontStretch?: Property.FontStretch;
    /**
     * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.
     *
     * **Syntax**: `normal | italic | oblique <angle>?`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-style
     */
    fontStyle?: Property.FontStyle;
    /**
     * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.
     *
     * **Syntax**: `none | [ weight || style ]`
     *
     * **Initial value**: `weight style`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **34**  | **9**  |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
     */
    fontSynthesis?: Property.FontSynthesis;
    /**
     * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
     *
     * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant
     */
    fontVariant?: Property.FontVariant;
    /**
     * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.
     *
     * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **52** | **34**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps
     */
    fontVariantCaps?: Property.FontVariantCaps;
    /**
     * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
     *
     * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **34**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
     */
    fontVariantEastAsian?: Property.FontVariantEastAsian;
    /**
     * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
     *
     * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
     *
     * **Initial value**: `normal`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  | IE  |
     * | :------: | :-----: | :-----: | :----: | :-: |
     * |  **34**  | **34**  | **9.1** | **79** | No  |
     * | 31 _-x-_ |         | 7 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures
     */
    fontVariantLigatures?: Property.FontVariantLigatures;
    /**
     * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.
     *
     * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **52** | **34**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric
     */
    fontVariantNumeric?: Property.FontVariantNumeric;
    /**
     * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
     *
     * **Syntax**: `normal | sub | super`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **34**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
     */
    fontVariantPosition?: Property.FontVariantPosition;
    /**
     * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.
     *
     * **Syntax**: `normal | [ <string> <number> ]#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **62** | **62**  | **11** | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
     */
    fontVariationSettings?: Property.FontVariationSettings;
    /**
     * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.
     *
     * **Syntax**: `<font-weight-absolute> | bolder | lighter`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **2**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-weight
     */
    fontWeight?: Property.FontWeight;
    /**
     * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.
     *
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |              Edge               |                 IE                  |
     * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
     * | **89** |   No    |   No   |             **79**              | **10** _(-ms-high-contrast-adjust)_ |
     * |        |         |        | 12 _(-ms-high-contrast-adjust)_ |                                     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
     */
    forcedColorAdjust?: Property.ForcedColorAdjust;
    /**
     * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.
     *
     * **Syntax**: `<track-size>+`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |             IE              |
     * | :----: | :-----: | :------: | :----: | :-------------------------: |
     * | **57** | **70**  | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
     */
    gridAutoColumns?: Property.GridAutoColumns<TLength>;
    /**
     * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
     *
     * **Syntax**: `[ row | column ] || dense`
     *
     * **Initial value**: `row`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow
     */
    gridAutoFlow?: Property.GridAutoFlow;
    /**
     * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.
     *
     * **Syntax**: `<track-size>+`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |            IE            |
     * | :----: | :-----: | :------: | :----: | :----------------------: |
     * | **57** | **70**  | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
     */
    gridAutoRows?: Property.GridAutoRows<TLength>;
    /**
     * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
     */
    gridColumnEnd?: Property.GridColumnEnd;
    /**
     * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
     */
    gridColumnStart?: Property.GridColumnStart;
    /**
     * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
     */
    gridRowEnd?: Property.GridRowEnd;
    /**
     * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start
     */
    gridRowStart?: Property.GridRowStart;
    /**
     * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.
     *
     * **Syntax**: `none | <string>+`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas
     */
    gridTemplateAreas?: Property.GridTemplateAreas;
    /**
     * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |             IE              |
     * | :----: | :-----: | :------: | :----: | :-------------------------: |
     * | **57** | **52**  | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
     */
    gridTemplateColumns?: Property.GridTemplateColumns<TLength>;
    /**
     * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |            IE            |
     * | :----: | :-----: | :------: | :----: | :----------------------: |
     * | **57** | **52**  | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
     */
    gridTemplateRows?: Property.GridTemplateRows<TLength>;
    /**
     * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.
     *
     * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   No    | **10** |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation
     */
    hangingPunctuation?: Property.HangingPunctuation;
    /**
     * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/height
     */
    height?: Property.Height<TLength>;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     *
     * |  Chrome  | Firefox |    Safari     |     Edge     |      IE      |
     * | :------: | :-----: | :-----------: | :----------: | :----------: |
     * |  **55**  | **43**  | **5.1** _-x-_ | **12** _-x-_ | **10** _-x-_ |
     * | 13 _-x-_ | 6 _-x-_ |               |              |              |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
     */
    hyphens?: Property.Hyphens;
    /**
     * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.
     *
     * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`
     *
     * **Initial value**: `from-image`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **81** | **26**  | **13.1** | **81** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation
     */
    imageOrientation?: Property.ImageOrientation;
    /**
     * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.
     *
     * **Syntax**: `auto | crisp-edges | pixelated`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **13** | **3.6** | **6**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
     */
    imageRendering?: Property.ImageRendering;
    /**
     * **Syntax**: `[ from-image || <resolution> ] && snap?`
     *
     * **Initial value**: `1dppx`
     */
    imageResolution?: Property.ImageResolution;
    /**
     * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
     *
     * **Syntax**: `normal | [ <number> <integer>? ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   No    | **9**  |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter
     */
    initialLetter?: Property.InitialLetter;
    /**
     * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'width'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
     */
    inlineSize?: Property.InlineSize<TLength>;
    /**
     * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.
     *
     * **Syntax**: `<'top'>{1,4}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset
     */
    inset?: Property.Inset<TLength>;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
     */
    insetBlock?: Property.InsetBlock<TLength>;
    /**
     * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
     */
    insetBlockEnd?: Property.InsetBlockEnd<TLength>;
    /**
     * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
     */
    insetBlockStart?: Property.InsetBlockStart<TLength>;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
     */
    insetInline?: Property.InsetInline<TLength>;
    /**
     * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
     */
    insetInlineEnd?: Property.InsetInlineEnd<TLength>;
    /**
     * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
     */
    insetInlineStart?: Property.InsetInlineStart<TLength>;
    /**
     * The **`isolation`** CSS property determines whether an element must create a new stacking context.
     *
     * **Syntax**: `auto | isolate`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **41** | **36**  | **8**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/isolation
     */
    isolation?: Property.Isolation;
    /**
     * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
     *
     * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **52**  | **20**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-content
     */
    justifyContent?: Property.JustifyContent;
    /**
     * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.
     *
     * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`
     *
     * **Initial value**: `legacy`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **52** | **20**  | **9**  | **12** | **11** |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **45**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
     */
    justifyItems?: Property.JustifyItems;
    /**
     * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **45**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  |      IE      |
     * | :----: | :-----: | :------: | :----: | :----------: |
     * | **57** | **45**  | **10.1** | **16** | **10** _-x-_ |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-self
     */
    justifySelf?: Property.JustifySelf;
    /**
     * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.
     *
     * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   n/a   |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-tracks
     */
    justifyTracks?: Property.JustifyTracks;
    /**
     * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/left
     */
    left?: Property.Left<TLength>;
    /**
     * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.
     *
     * **Syntax**: `normal | <length>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
     */
    letterSpacing?: Property.LetterSpacing<TLength>;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE    |
     * | :-----: | :-----: | :-----: | :----: | :-----: |
     * | **58**  | **69**  | **11**  | **14** | **5.5** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |         |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/line-break
     */
    lineBreak?: Property.LineBreak;
    /**
     * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.
     *
     * **Syntax**: `normal | <number> | <length> | <percentage>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/line-height
     */
    lineHeight?: Property.LineHeight<TLength>;
    /**
     * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |   No    |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step
     */
    lineHeightStep?: Property.LineHeightStep<TLength>;
    /**
     * The **`list-style-image`** CSS property sets an image to be used as the list item marker.
     *
     * **Syntax**: `<image> | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image
     */
    listStyleImage?: Property.ListStyleImage;
    /**
     * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.
     *
     * **Syntax**: `inside | outside`
     *
     * **Initial value**: `outside`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position
     */
    listStylePosition?: Property.ListStylePosition;
    /**
     * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
     *
     * **Syntax**: `<counter-style> | <string> | none`
     *
     * **Initial value**: `disc`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type
     */
    listStyleType?: Property.ListStyleType;
    /**
     * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
     */
    marginBlock?: Property.MarginBlock<TLength>;
    /**
     * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
     */
    marginBlockEnd?: Property.MarginBlockEnd<TLength>;
    /**
     * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
     */
    marginBlockStart?: Property.MarginBlockStart<TLength>;
    /**
     * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
     */
    marginBottom?: Property.MarginBottom<TLength>;
    /**
     * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
     */
    marginInline?: Property.MarginInline<TLength>;
    /**
     * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * |          Chrome          |        Firefox        |          Safari          |  Edge  | IE  |
     * | :----------------------: | :-------------------: | :----------------------: | :----: | :-: |
     * |          **69**          |        **41**         |         **12.1**         | **79** | No  |
     * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
     */
    marginInlineEnd?: Property.MarginInlineEnd<TLength>;
    /**
     * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * |           Chrome           |         Firefox         |           Safari           |  Edge  | IE  |
     * | :------------------------: | :---------------------: | :------------------------: | :----: | :-: |
     * |           **69**           |         **41**          |          **12.1**          | **79** | No  |
     * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
     */
    marginInlineStart?: Property.MarginInlineStart<TLength>;
    /**
     * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
     */
    marginLeft?: Property.MarginLeft<TLength>;
    /**
     * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
     */
    marginRight?: Property.MarginRight<TLength>;
    /**
     * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
     */
    marginTop?: Property.MarginTop<TLength>;
    /**
     * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.
     *
     * **Syntax**: `luminance | alpha`
     *
     * **Initial value**: `alpha`
     */
    maskBorderMode?: Property.MaskBorderMode;
    /**
     * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
     *
     * **Syntax**: `[ <length> | <number> ]{1,4}`
     *
     * **Initial value**: `0`
     *
     * |                 Chrome                  | Firefox |                  Safari                   |                   Edge                   | IE  |
     * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-outset)_ |   No    | **3.1** _(-webkit-mask-box-image-outset)_ | **79** _(-webkit-mask-box-image-outset)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
     */
    maskBorderOutset?: Property.MaskBorderOutset<TLength>;
    /**
     * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
     *
     * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
     *
     * **Initial value**: `stretch`
     *
     * |                 Chrome                  | Firefox |                  Safari                   |                   Edge                   | IE  |
     * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-repeat)_ |   No    | **3.1** _(-webkit-mask-box-image-repeat)_ | **79** _(-webkit-mask-box-image-repeat)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
     */
    maskBorderRepeat?: Property.MaskBorderRepeat;
    /**
     * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
     *
     * **Syntax**: `<number-percentage>{1,4} fill?`
     *
     * **Initial value**: `0`
     *
     * |                 Chrome                 | Firefox |                  Safari                  |                  Edge                   | IE  |
     * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-slice)_ |   No    | **3.1** _(-webkit-mask-box-image-slice)_ | **79** _(-webkit-mask-box-image-slice)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
     */
    maskBorderSlice?: Property.MaskBorderSlice;
    /**
     * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
     *
     * **Syntax**: `none | <image>`
     *
     * **Initial value**: `none`
     *
     * |                 Chrome                  | Firefox |                  Safari                   |                   Edge                   | IE  |
     * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-source)_ |   No    | **3.1** _(-webkit-mask-box-image-source)_ | **79** _(-webkit-mask-box-image-source)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
     */
    maskBorderSource?: Property.MaskBorderSource;
    /**
     * The **`mask-border-width`** CSS property sets the width of an element's mask border.
     *
     * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
     *
     * **Initial value**: `auto`
     *
     * |                 Chrome                 | Firefox |                  Safari                  |                  Edge                   | IE  |
     * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-width)_ |   No    | **3.1** _(-webkit-mask-box-image-width)_ | **79** _(-webkit-mask-box-image-width)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
     */
    maskBorderWidth?: Property.MaskBorderWidth<TLength>;
    /**
     * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
     *
     * **Syntax**: `[ <geometry-box> | no-clip ]#`
     *
     * **Initial value**: `border-box`
     *
     * |   Chrome    | Firefox |   Safari    |     Edge     | IE  |
     * | :---------: | :-----: | :---------: | :----------: | :-: |
     * | **1** _-x-_ | **53**  | **4** _-x-_ | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
     */
    maskClip?: Property.MaskClip;
    /**
     * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
     *
     * **Syntax**: `<compositing-operator>#`
     *
     * **Initial value**: `add`
     *
     * | Chrome | Firefox | Safari | Edge  | IE  |
     * | :----: | :-----: | :----: | :---: | :-: |
     * |   No   | **53**  |   No   | 18-79 | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
     */
    maskComposite?: Property.MaskComposite;
    /**
     * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
     *
     * **Syntax**: `<mask-reference>#`
     *
     * **Initial value**: `none`
     *
     * |   Chrome    | Firefox |   Safari    |  Edge  | IE  |
     * | :---------: | :-----: | :---------: | :----: | :-: |
     * | **1** _-x-_ | **53**  | **4** _-x-_ | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
     */
    maskImage?: Property.MaskImage;
    /**
     * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.
     *
     * **Syntax**: `<masking-mode>#`
     *
     * **Initial value**: `match-source`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **53**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
     */
    maskMode?: Property.MaskMode;
    /**
     * The **`mask-origin`** CSS property sets the origin of a mask.
     *
     * **Syntax**: `<geometry-box>#`
     *
     * **Initial value**: `border-box`
     *
     * |   Chrome    | Firefox |   Safari    |     Edge     | IE  |
     * | :---------: | :-----: | :---------: | :----------: | :-: |
     * | **1** _-x-_ | **53**  | **4** _-x-_ | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
     */
    maskOrigin?: Property.MaskOrigin;
    /**
     * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
     *
     * **Syntax**: `<position>#`
     *
     * **Initial value**: `center`
     *
     * |   Chrome    | Firefox |    Safari     |  Edge  | IE  |
     * | :---------: | :-----: | :-----------: | :----: | :-: |
     * | **1** _-x-_ | **53**  | **3.2** _-x-_ | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
     */
    maskPosition?: Property.MaskPosition<TLength>;
    /**
     * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
     *
     * **Syntax**: `<repeat-style>#`
     *
     * **Initial value**: `no-repeat`
     *
     * |   Chrome    | Firefox |    Safari     |  Edge  | IE  |
     * | :---------: | :-----: | :-----------: | :----: | :-: |
     * | **1** _-x-_ | **53**  | **3.2** _-x-_ | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
     */
    maskRepeat?: Property.MaskRepeat;
    /**
     * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto`
     *
     * |   Chrome    | Firefox |   Safari    |  Edge  | IE  |
     * | :---------: | :-----: | :---------: | :----: | :-: |
     * | **4** _-x-_ | **53**  | **4** _-x-_ | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
     */
    maskSize?: Property.MaskSize<TLength>;
    /**
     * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.
     *
     * **Syntax**: `luminance | alpha`
     *
     * **Initial value**: `luminance`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **24** | **35**  | **6.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
     */
    maskType?: Property.MaskType;
    /**
     * The `math-style` property indicates whether MathML equations should render with normal or compact height.
     *
     * **Syntax**: `normal | compact`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |   n/a   |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/math-style
     */
    mathStyle?: Property.MathStyle;
    /**
     * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.
     *
     * **Syntax**: `<'max-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
     */
    maxBlockSize?: Property.MaxBlockSize<TLength>;
    /**
     * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.
     *
     * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **18** |  **1**  | **1.3** | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-height
     */
    maxHeight?: Property.MaxHeight<TLength>;
    /**
     * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'max-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |   Safari   |  Edge  | IE  |
     * | :----: | :-----: | :--------: | :----: | :-: |
     * | **57** | **41**  |  **12.1**  | **79** | No  |
     * |        |         | 10.1 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
     */
    maxInlineSize?: Property.MaxInlineSize<TLength>;
    /**
     * **Syntax**: `none | <integer>`
     *
     * **Initial value**: `none`
     */
    maxLines?: Property.MaxLines;
    /**
     * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.
     *
     * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-width
     */
    maxWidth?: Property.MaxWidth<TLength>;
    /**
     * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'min-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
     */
    minBlockSize?: Property.MinBlockSize<TLength>;
    /**
     * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **3**  | **1.3** | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-height
     */
    minHeight?: Property.MinHeight<TLength>;
    /**
     * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'min-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
     */
    minInlineSize?: Property.MinInlineSize<TLength>;
    /**
     * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-width
     */
    minWidth?: Property.MinWidth<TLength>;
    /**
     * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
     *
     * **Syntax**: `<blend-mode>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **41** | **32**  | **8**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode
     */
    mixBlendMode?: Property.MixBlendMode;
    /**
     * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **55**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-distance)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
     */
    motionDistance?: Property.OffsetDistance<TLength>;
    /**
     * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
     *
     * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
     *
     * **Initial value**: `none`
     *
     * |       Chrome       | Firefox | Safari |  Edge  | IE  |
     * | :----------------: | :-----: | :----: | :----: | :-: |
     * |       **55**       | **72**  |   No   | **79** | No  |
     * | 46 _(motion-path)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
     */
    motionPath?: Property.OffsetPath;
    /**
     * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
     *
     * **Syntax**: `[ auto | reverse ] || <angle>`
     *
     * **Initial value**: `auto`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **56**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-rotation)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
     */
    motionRotation?: Property.OffsetRotate;
    /**
     * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
     *
     * **Syntax**: `fill | contain | cover | none | scale-down`
     *
     * **Initial value**: `fill`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **32** | **36**  | **10** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/object-fit
     */
    objectFit?: Property.ObjectFit;
    /**
     * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **32** | **36**  | **10** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/object-position
     */
    objectPosition?: Property.ObjectPosition<TLength>;
    /**
     * **Syntax**: `auto | <position>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **79** | **72**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
     */
    offsetAnchor?: Property.OffsetAnchor<TLength>;
    /**
     * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **55**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-distance)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
     */
    offsetDistance?: Property.OffsetDistance<TLength>;
    /**
     * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
     *
     * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
     *
     * **Initial value**: `none`
     *
     * |       Chrome       | Firefox | Safari |  Edge  | IE  |
     * | :----------------: | :-----: | :----: | :----: | :-: |
     * |       **55**       | **72**  |   No   | **79** | No  |
     * | 46 _(motion-path)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
     */
    offsetPath?: Property.OffsetPath;
    /**
     * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
     *
     * **Syntax**: `[ auto | reverse ] || <angle>`
     *
     * **Initial value**: `auto`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **56**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-rotation)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
     */
    offsetRotate?: Property.OffsetRotate;
    /**
     * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
     *
     * **Syntax**: `[ auto | reverse ] || <angle>`
     *
     * **Initial value**: `auto`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **56**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-rotation)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
     */
    offsetRotation?: Property.OffsetRotate;
    /**
     * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `1.0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **2**  | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/opacity
     */
    opacity?: Property.Opacity;
    /**
     * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `0`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |    IE    |
     * | :------: | :-----: | :-----: | :----: | :------: |
     * |  **29**  | **20**  |  **9**  | **12** |  **11**  |
     * | 21 _-x-_ |         | 7 _-x-_ |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/order
     */
    order?: Property.Order;
    /**
     * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `2`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **25** |   No    | **1.3** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/orphans
     */
    orphans?: Property.Orphans;
    /**
     * The **`outline-color`** CSS property sets the color of an element's outline.
     *
     * **Syntax**: `<color> | invert`
     *
     * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
     */
    outlineColor?: Property.OutlineColor;
    /**
     * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **1**  | **1.5** | **1.2** | **15** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
     */
    outlineOffset?: Property.OutlineOffset<TLength>;
    /**
     * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `auto | <'border-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
     */
    outlineStyle?: Property.OutlineStyle;
    /**
     * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
     */
    outlineWidth?: Property.OutlineWidth<TLength>;
    /**
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **56** | **66**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-anchor
     */
    overflowAnchor?: Property.OverflowAnchor;
    /**
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **69**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
     */
    overflowBlock?: Property.OverflowBlock;
    /**
     * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.
     *
     * **Syntax**: `padding-box | content-box`
     *
     * **Initial value**: `padding-box`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **29**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box
     */
    overflowClipBox?: Property.OverflowClipBox;
    /**
     * **Syntax**: `<visual-box> || <length [0,∞]>`
     *
     * **Initial value**: `0px`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **90** |   No    |   No   | **90** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin
     */
    overflowClipMargin?: Property.OverflowClipMargin<TLength>;
    /**
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **69**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
     */
    overflowInline?: Property.OverflowInline;
    /**
     * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
     *
     * **Syntax**: `normal | break-word | anywhere`
     *
     * **Initial value**: `normal`
     *
     * |     Chrome      |      Firefox      |     Safari      |       Edge       |          IE           |
     * | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
     * |     **23**      |      **49**       |     **6.1**     |      **18**      | **5.5** _(word-wrap)_ |
     * | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ |                       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
     */
    overflowWrap?: Property.OverflowWrap;
    /**
     * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **3.5** | **3**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
     */
    overflowX?: Property.OverflowX;
    /**
     * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **3.5** | **3**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
     */
    overflowY?: Property.OverflowY;
    /**
     * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **77** | **73**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block
     */
    overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock;
    /**
     * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **77** | **73**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline
     */
    overscrollBehaviorInline?: Property.OverscrollBehaviorInline;
    /**
     * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **59**  |   No   | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x
     */
    overscrollBehaviorX?: Property.OverscrollBehaviorX;
    /**
     * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **59**  |   No   | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y
     */
    overscrollBehaviorY?: Property.OverscrollBehaviorY;
    /**
     * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
     */
    paddingBlock?: Property.PaddingBlock<TLength>;
    /**
     * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
     */
    paddingBlockEnd?: Property.PaddingBlockEnd<TLength>;
    /**
     * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
     */
    paddingBlockStart?: Property.PaddingBlockStart<TLength>;
    /**
     * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
     */
    paddingBottom?: Property.PaddingBottom<TLength>;
    /**
     * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
     */
    paddingInline?: Property.PaddingInline<TLength>;
    /**
     * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * |          Chrome           |        Firefox         |          Safari           |  Edge  | IE  |
     * | :-----------------------: | :--------------------: | :-----------------------: | :----: | :-: |
     * |          **69**           |         **41**         |         **12.1**          | **79** | No  |
     * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
     */
    paddingInlineEnd?: Property.PaddingInlineEnd<TLength>;
    /**
     * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * |           Chrome            |         Firefox          |           Safari            |  Edge  | IE  |
     * | :-------------------------: | :----------------------: | :-------------------------: | :----: | :-: |
     * |           **69**            |          **41**          |          **12.1**           | **79** | No  |
     * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
     */
    paddingInlineStart?: Property.PaddingInlineStart<TLength>;
    /**
     * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
     */
    paddingLeft?: Property.PaddingLeft<TLength>;
    /**
     * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
     */
    paddingRight?: Property.PaddingRight<TLength>;
    /**
     * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
     */
    paddingTop?: Property.PaddingTop<TLength>;
    /**
     * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.
     *
     * **Syntax**: `auto | always | avoid | left | right | recto | verso`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/page-break-after
     */
    pageBreakAfter?: Property.PageBreakAfter;
    /**
     * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.
     *
     * **Syntax**: `auto | always | avoid | left | right | recto | verso`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/page-break-before
     */
    pageBreakBefore?: Property.PageBreakBefore;
    /**
     * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.
     *
     * **Syntax**: `auto | avoid`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **19**  | **1.3** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/page-break-inside
     */
    pageBreakInside?: Property.PageBreakInside;
    /**
     * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.
     *
     * **Syntax**: `normal | [ fill || stroke || markers ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **35** | **60**  | **8**  | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/paint-order
     */
    paintOrder?: Property.PaintOrder;
    /**
     * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
     *
     * **Syntax**: `none | <length>`
     *
     * **Initial value**: `none`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  |   IE   |
     * | :------: | :------: | :-----: | :----: | :----: |
     * |  **36**  |  **16**  |  **9**  | **12** | **10** |
     * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/perspective
     */
    perspective?: Property.Perspective<TLength>;
    /**
     * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  |   IE   |
     * | :------: | :------: | :-----: | :----: | :----: |
     * |  **36**  |  **16**  |  **9**  | **12** | **10** |
     * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
     */
    perspectiveOrigin?: Property.PerspectiveOrigin<TLength>;
    /**
     * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.
     *
     * **Syntax**: `<'align-content'> <'justify-content'>?`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **9**  | **79** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **53**  | **11** | **79** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/place-content
     */
    placeContent?: Property.PlaceContent;
    /**
     * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.
     *
     * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **1**  | **1.5** | **4**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/pointer-events
     */
    pointerEvents?: Property.PointerEvents;
    /**
     * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.
     *
     * **Syntax**: `static | relative | absolute | sticky | fixed`
     *
     * **Initial value**: `static`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/position
     */
    position?: Property.Position;
    /**
     * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.
     *
     * **Syntax**: `none | auto | [ <string> <string> ]+`
     *
     * **Initial value**: depends on user agent
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **11** | **1.5** | **9**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/quotes
     */
    quotes?: Property.Quotes;
    /**
     * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
     *
     * **Syntax**: `none | both | horizontal | vertical | block | inline`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **1**  |  **4**  | **3**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/resize
     */
    resize?: Property.Resize;
    /**
     * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/right
     */
    right?: Property.Right<TLength>;
    /**
     * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.
     *
     * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **72**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/rotate
     */
    rotate?: Property.Rotate;
    /**
     * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **84** | **63**  |   No   | **84** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * |       Chrome        |       Firefox       |        Safari         |  Edge  | IE  |
     * | :-----------------: | :-----------------: | :-------------------: | :----: | :-: |
     * |       **66**        |       **61**        |       **12.1**        | **16** | No  |
     * | 57 _(grid-row-gap)_ | 52 _(grid-row-gap)_ | 10.1 _(grid-row-gap)_ |        |     |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/row-gap
     */
    rowGap?: Property.RowGap<TLength>;
    /**
     * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.
     *
     * **Syntax**: `start | center | space-between | space-around`
     *
     * **Initial value**: `space-around`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **38**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/ruby-align
     */
    rubyAlign?: Property.RubyAlign;
    /**
     * **Syntax**: `separate | collapse | auto`
     *
     * **Initial value**: `separate`
     */
    rubyMerge?: Property.RubyMerge;
    /**
     * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
     *
     * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
     *
     * **Initial value**: `alternate`
     *
     * | Chrome  | Firefox |    Safari     | Edge  | IE  |
     * | :-----: | :-----: | :-----------: | :---: | :-: |
     * | **84**  | **38**  | **6.1** _-x-_ | 12-79 | No  |
     * | 1 _-x-_ |         |               |       |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/ruby-position
     */
    rubyPosition?: Property.RubyPosition;
    /**
     * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
     *
     * **Syntax**: `none | <number>{1,3}`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **72**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scale
     */
    scale?: Property.Scale;
    /**
     * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
     *
     * **Syntax**: `auto | smooth`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **61** | **36**  |  n/a   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior
     */
    scrollBehavior?: Property.ScrollBehavior;
    /**
     * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
     *
     * **Syntax**: `<length>{1,4}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |            Safari             |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
     */
    scrollMargin?: Property.ScrollMargin<TLength>;
    /**
     * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
     *
     * **Syntax**: `<length>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
     */
    scrollMarginBlock?: Property.ScrollMarginBlock<TLength>;
    /**
     * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
     */
    scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<TLength>;
    /**
     * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
     */
    scrollMarginBlockStart?: Property.ScrollMarginBlockStart<TLength>;
    /**
     * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |                Safari                |  Edge  | IE  |
     * | :----: | :-----: | :----------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-bottom)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
     */
    scrollMarginBottom?: Property.ScrollMarginBottom<TLength>;
    /**
     * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
     *
     * **Syntax**: `<length>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **68**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
     */
    scrollMarginInline?: Property.ScrollMarginInline<TLength>;
    /**
     * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
     */
    scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd<TLength>;
    /**
     * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
     */
    scrollMarginInlineStart?: Property.ScrollMarginInlineStart<TLength>;
    /**
     * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari               |  Edge  | IE  |
     * | :----: | :-----: | :--------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-left)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
     */
    scrollMarginLeft?: Property.ScrollMarginLeft<TLength>;
    /**
     * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari                |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-right)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
     */
    scrollMarginRight?: Property.ScrollMarginRight<TLength>;
    /**
     * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |              Safari               |  Edge  | IE  |
     * | :----: | :-----: | :-------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-top)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
     */
    scrollMarginTop?: Property.ScrollMarginTop<TLength>;
    /**
     * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.
     *
     * **Syntax**: `[ auto | <length-percentage> ]{1,4}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
     */
    scrollPadding?: Property.ScrollPadding<TLength>;
    /**
     * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
     *
     * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
     */
    scrollPaddingBlock?: Property.ScrollPaddingBlock<TLength>;
    /**
     * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
     */
    scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd<TLength>;
    /**
     * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
     */
    scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart<TLength>;
    /**
     * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
     */
    scrollPaddingBottom?: Property.ScrollPaddingBottom<TLength>;
    /**
     * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
     *
     * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
     */
    scrollPaddingInline?: Property.ScrollPaddingInline<TLength>;
    /**
     * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
     */
    scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd<TLength>;
    /**
     * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
     */
    scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart<TLength>;
    /**
     * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
     */
    scrollPaddingLeft?: Property.ScrollPaddingLeft<TLength>;
    /**
     * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
     */
    scrollPaddingRight?: Property.ScrollPaddingRight<TLength>;
    /**
     * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
     */
    scrollPaddingTop?: Property.ScrollPaddingTop<TLength>;
    /**
     * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.
     *
     * **Syntax**: `[ none | start | end | center ]{1,2}`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align
     */
    scrollSnapAlign?: Property.ScrollSnapAlign;
    /**
     * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
     *
     * **Syntax**: `<length>{1,4}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |            Safari             |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
     */
    scrollSnapMargin?: Property.ScrollMargin<TLength>;
    /**
     * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |                Safari                |  Edge  | IE  |
     * | :----: | :-----: | :----------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-bottom)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
     */
    scrollSnapMarginBottom?: Property.ScrollMarginBottom<TLength>;
    /**
     * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari               |  Edge  | IE  |
     * | :----: | :-----: | :--------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-left)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
     */
    scrollSnapMarginLeft?: Property.ScrollMarginLeft<TLength>;
    /**
     * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari                |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-right)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
     */
    scrollSnapMarginRight?: Property.ScrollMarginRight<TLength>;
    /**
     * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |              Safari               |  Edge  | IE  |
     * | :----: | :-----: | :-------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-top)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
     */
    scrollSnapMarginTop?: Property.ScrollMarginTop<TLength>;
    /**
     * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to "pass over" possible snap positions.
     *
     * **Syntax**: `normal | always`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **75** |   No    |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
     */
    scrollSnapStop?: Property.ScrollSnapStop;
    /**
     * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
     *
     * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |     Edge     |      IE      |
     * | :----: | :-----: | :-----: | :----------: | :----------: |
     * | **69** |  39-68  | **11**  | **12** _-x-_ | **10** _-x-_ |
     * |        |         | 9 _-x-_ |              |              |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
     */
    scrollSnapType?: Property.ScrollSnapType;
    /**
     * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
     *
     * **Syntax**: `auto | dark | light | <color>{2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **64**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
     */
    scrollbarColor?: Property.ScrollbarColor;
    /**
     * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
     *
     * **Syntax**: `auto | [ stable | always ] && both? && force?`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |   No    |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
     */
    scrollbarGutter?: Property.ScrollbarGutter;
    /**
     * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.
     *
     * **Syntax**: `auto | thin | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **64**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
     */
    scrollbarWidth?: Property.ScrollbarWidth;
    /**
     * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `0.0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **37** | **62**  | **10.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold
     */
    shapeImageThreshold?: Property.ShapeImageThreshold;
    /**
     * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **37** | **62**  | **10.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/shape-margin
     */
    shapeMargin?: Property.ShapeMargin<TLength>;
    /**
     * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.
     *
     * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **37** | **62**  | **10.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside
     */
    shapeOutside?: Property.ShapeOutside;
    /**
     * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
     *
     * **Syntax**: `<integer> | <length>`
     *
     * **Initial value**: `8`
     *
     * | Chrome |   Firefox   | Safari  |  Edge  | IE  |
     * | :----: | :---------: | :-----: | :----: | :-: |
     * | **21** | **4** _-x-_ | **6.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/tab-size
     */
    tabSize?: Property.TabSize<TLength>;
    /**
     * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.
     *
     * **Syntax**: `auto | fixed`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **14** |  **1**  | **1**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/table-layout
     */
    tableLayout?: Property.TableLayout;
    /**
     * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.
     *
     * **Syntax**: `start | end | left | right | center | justify | match-parent`
     *
     * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-align
     */
    textAlign?: Property.TextAlign;
    /**
     * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
     *
     * **Syntax**: `auto | start | end | left | right | center | justify`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **47** | **49**  |   No   | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last
     */
    textAlignLast?: Property.TextAlignLast;
    /**
     * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
     *
     * **Syntax**: `none | all | [ digits <integer>? ]`
     *
     * **Initial value**: `none`
     *
     * |           Chrome           | Firefox |              Safari              | Edge  |                   IE                   |
     * | :------------------------: | :-----: | :------------------------------: | :---: | :------------------------------------: |
     * |           **48**           | **48**  | **5.1** _(-webkit-text-combine)_ | 15-79 | **11** _(-ms-text-combine-horizontal)_ |
     * | 9 _(-webkit-text-combine)_ |         |                                  |       |                                        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
     */
    textCombineUpright?: Property.TextCombineUpright;
    /**
     * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **36**  | **12.1** | **79** | No  |
     * |        |         | 8 _-x-_  |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
     */
    textDecorationColor?: Property.TextDecorationColor;
    /**
     * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
     *
     * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **36**  | **12.1** | **79** | No  |
     * |        |         | 8 _-x-_  |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
     */
    textDecorationLine?: Property.TextDecorationLine;
    /**
     * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
     *
     * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
     *
     * **Initial value**: `objects`
     *
     * | Chrome | Firefox |  Safari  | Edge | IE  |
     * | :----: | :-----: | :------: | :--: | :-: |
     * | 57-64  |   No    | **12.1** |  No  | No  |
     * |        |         | 8 _-x-_  |      |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
     */
    textDecorationSkip?: Property.TextDecorationSkip;
    /**
     * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.
     *
     * **Syntax**: `auto | all | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **64** | **70**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
     */
    textDecorationSkipInk?: Property.TextDecorationSkipInk;
    /**
     * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
     *
     * **Syntax**: `solid | double | dotted | dashed | wavy`
     *
     * **Initial value**: `solid`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **36**  | **12.1** | **79** | No  |
     * |        |         | 8 _-x-_  |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
     */
    textDecorationStyle?: Property.TextDecorationStyle;
    /**
     * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
     *
     * **Syntax**: `auto | from-font | <length> | <percentage> `
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **89** | **70**  | **12.1** | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
     */
    textDecorationThickness?: Property.TextDecorationThickness<TLength>;
    /**
     * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
     *
     * **Syntax**: `auto | from-font | <length> | <percentage> `
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  | Edge  | IE  |
     * | :----: | :-----: | :------: | :---: | :-: |
     * | 87-89  | **70**  | **12.1** | 87-89 | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
     */
    textDecorationWidth?: Property.TextDecorationThickness<TLength>;
    /**
     * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
     */
    textEmphasisColor?: Property.TextEmphasisColor;
    /**
     * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
     *
     * **Syntax**: `[ over | under ] && [ right | left ]`
     *
     * **Initial value**: `over right`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
     */
    textEmphasisPosition?: Property.TextEmphasisPosition;
    /**
     * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
     *
     * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
     *
     * **Initial value**: `none`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
     */
    textEmphasisStyle?: Property.TextEmphasisStyle;
    /**
     * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.
     *
     * **Syntax**: `<length-percentage> && hanging? && each-line?`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-indent
     */
    textIndent?: Property.TextIndent<TLength>;
    /**
     * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
     *
     * **Syntax**: `auto | inter-character | inter-word | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * |  n/a   | **55**  |   No   | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
     */
    textJustify?: Property.TextJustify;
    /**
     * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
     *
     * **Syntax**: `mixed | upright | sideways`
     *
     * **Initial value**: `mixed`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  | IE  |
     * | :------: | :-----: | :-------: | :----: | :-: |
     * |  **48**  | **41**  |  **14**   | **79** | No  |
     * | 11 _-x-_ |         | 5.1 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation
     */
    textOrientation?: Property.TextOrientation;
    /**
     * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
     *
     * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
     *
     * **Initial value**: `clip`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **7**  | **1.3** | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow
     */
    textOverflow?: Property.TextOverflow;
    /**
     * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.
     *
     * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **4**  |  **1**  | **5**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering
     */
    textRendering?: Property.TextRendering;
    /**
     * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
     *
     * **Syntax**: `none | <shadow-t>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE   |
     * | :----: | :-----: | :-----: | :----: | :----: |
     * | **2**  | **3.5** | **1.1** | **12** | **10** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow
     */
    textShadow?: Property.TextShadow;
    /**
     * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
     *
     * **Syntax**: `none | auto | <percentage>`
     *
     * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **54** |   No    |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust
     */
    textSizeAdjust?: Property.TextSizeAdjust;
    /**
     * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.
     *
     * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-transform
     */
    textTransform?: Property.TextTransform;
    /**
     * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.
     *
     * **Syntax**: `auto | <length> | <percentage> `
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **87** | **70**  | **12.1** | **87** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset
     */
    textUnderlineOffset?: Property.TextUnderlineOffset<TLength>;
    /**
     * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
     *
     * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :------: | :----: | :---: |
     * | **33** | **74**  | **12.1** | **12** | **6** |
     * |        |         | 9 _-x-_  |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
     */
    textUnderlinePosition?: Property.TextUnderlinePosition;
    /**
     * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/top
     */
    top?: Property.Top<TLength>;
    /**
     * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
     *
     * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |    IE    |
     * | :----: | :-----: | :----: | :----: | :------: |
     * | **36** | **52**  | **13** | **12** |  **11**  |
     * |        |         |        |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/touch-action
     */
    touchAction?: Property.TouchAction;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE    |
     * | :-----: | :-----: | :-------: | :----: | :-----: |
     * | **36**  | **16**  |   **9**   | **12** | **10**  |
     * | 1 _-x-_ |         | 3.1 _-x-_ |        | 9 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform
     */
    transform?: Property.Transform;
    /**
     * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.
     *
     * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`
     *
     * **Initial value**: `view-box`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **64** | **55**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
     */
    transformBox?: Property.TransformBox;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     *
     * | Chrome  |  Firefox  | Safari  |  Edge  |   IE    |
     * | :-----: | :-------: | :-----: | :----: | :-----: |
     * | **36**  |  **16**   |  **9**  | **12** | **10**  |
     * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ |        | 9 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
     */
    transformOrigin?: Property.TransformOrigin<TLength>;
    /**
     * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
     *
     * **Syntax**: `flat | preserve-3d`
     *
     * **Initial value**: `flat`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  | IE  |
     * | :------: | :------: | :-----: | :----: | :-: |
     * |  **36**  |  **16**  |  **9**  | **12** | No  |
     * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
     */
    transformStyle?: Property.TransformStyle;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **26**  | **16**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
     */
    transitionDelay?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
     */
    transitionDuration?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
     */
    transitionProperty?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
     */
    transitionTimingFunction?: Property.TransitionTimingFunction;
    /**
     * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
     *
     * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **72**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/translate
     */
    translate?: Property.Translate<TLength>;
    /**
     * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.
     *
     * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE    |
     * | :----: | :-----: | :-----: | :----: | :-----: |
     * | **2**  |  **1**  | **1.3** | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
     */
    unicodeBidi?: Property.UnicodeBidi;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox |   Safari    |     Edge     |      IE      |
     * | :-----: | :-----: | :---------: | :----------: | :----------: |
     * | **54**  | **69**  | **3** _-x-_ | **12** _-x-_ | **10** _-x-_ |
     * | 1 _-x-_ | 1 _-x-_ |             |              |              |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/user-select
     */
    userSelect?: Property.UserSelect;
    /**
     * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
     *
     * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`
     *
     * **Initial value**: `baseline`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
     */
    verticalAlign?: Property.VerticalAlign<TLength>;
    /**
     * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.
     *
     * **Syntax**: `visible | hidden | collapse`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/visibility
     */
    visibility?: Property.Visibility;
    /**
     * The **`white-space`** CSS property sets how white space inside an element is handled.
     *
     * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/white-space
     */
    whiteSpace?: Property.WhiteSpace;
    /**
     * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `2`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **25** |   No    | **1.3** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/widows
     */
    widows?: Property.Widows;
    /**
     * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/width
     */
    width?: Property.Width<TLength>;
    /**
     * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.
     *
     * **Syntax**: `auto | <animateable-feature>#`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **36** | **36**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/will-change
     */
    willChange?: Property.WillChange;
    /**
     * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
     *
     * **Syntax**: `normal | break-all | keep-all | break-word`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  | **15**  | **3**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/word-break
     */
    wordBreak?: Property.WordBreak;
    /**
     * The **`word-spacing`** CSS property sets the length of space between words and between tags.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing
     */
    wordSpacing?: Property.WordSpacing<TLength>;
    /**
     * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
     *
     * **Syntax**: `normal | break-word`
     *
     * **Initial value**: `normal`
     */
    wordWrap?: Property.WordWrap;
    /**
     * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
     *
     * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
     *
     * **Initial value**: `horizontal-tb`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |  IE   |
     * | :-----: | :-----: | :-------: | :----: | :---: |
     * | **48**  | **41**  | **10.1**  | **12** | **9** |
     * | 8 _-x-_ |         | 5.1 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
     */
    writingMode?: Property.WritingMode;
    /**
     * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
     *
     * **Syntax**: `auto | <integer>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/z-index
     */
    zIndex?: Property.ZIndex;
    /**
     * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.
     *
     * **Syntax**: `normal | reset | <number> | <percentage>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE    |
     * | :----: | :-----: | :-----: | :----: | :-----: |
     * | **1**  |   No    | **3.1** | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/zoom
     */
    zoom?: Property.Zoom;
}
export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.
     *
     * **Syntax**: `initial | inherit | unset | revert`
     *
     * **Initial value**: There is no practical initial value for it.
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **37** | **27**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/all
     */
    all?: Property.All;
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation
     */
    animation?: Property.Animation<TTime>;
    /**
     * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
     *
     * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background
     */
    background?: Property.Background<TLength>;
    /**
     * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.
     *
     * **Syntax**: `<bg-position>#`
     *
     * **Initial value**: `0% 0%`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-position
     */
    backgroundPosition?: Property.BackgroundPosition<TLength>;
    /**
     * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border
     */
    border?: Property.Border<TLength>;
    /**
     * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block
     */
    borderBlock?: Property.BorderBlock<TLength>;
    /**
     * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
     */
    borderBlockEnd?: Property.BorderBlockEnd<TLength>;
    /**
     * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
     */
    borderBlockStart?: Property.BorderBlockStart<TLength>;
    /**
     * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom
     */
    borderBottom?: Property.BorderBottom<TLength>;
    /**
     * The **`border-color`** shorthand CSS property sets the color of an element's border.
     *
     * **Syntax**: `<color>{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-color
     */
    borderColor?: Property.BorderColor;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     *
     * | Chrome  |  Firefox  | Safari  |  Edge  |   IE   |
     * | :-----: | :-------: | :-----: | :----: | :----: |
     * | **16**  |  **15**   |  **6**  | **12** | **11** |
     * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image
     */
    borderImage?: Property.BorderImage;
    /**
     * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
     */
    borderInline?: Property.BorderInline<TLength>;
    /**
     * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
     */
    borderInlineEnd?: Property.BorderInlineEnd<TLength>;
    /**
     * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
     */
    borderInlineStart?: Property.BorderInlineStart<TLength>;
    /**
     * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left
     */
    borderLeft?: Property.BorderLeft<TLength>;
    /**
     * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
     *
     * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-radius
     */
    borderRadius?: Property.BorderRadius<TLength>;
    /**
     * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right
     */
    borderRight?: Property.BorderRight<TLength>;
    /**
     * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.
     *
     * **Syntax**: `<line-style>{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-style
     */
    borderStyle?: Property.BorderStyle;
    /**
     * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top
     */
    borderTop?: Property.BorderTop<TLength>;
    /**
     * The **`border-width`** shorthand CSS property sets the width of an element's border.
     *
     * **Syntax**: `<line-width>{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-width
     */
    borderWidth?: Property.BorderWidth<TLength>;
    /**
     * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule
     */
    columnRule?: Property.ColumnRule<TLength>;
    /**
     * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
     *
     * **Syntax**: `<'column-width'> || <'column-count'>`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE   |
     * | :----: | :-----: | :-----: | :----: | :----: |
     * | **50** | **52**  |  **9**  | **12** | **10** |
     * |        |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/columns
     */
    columns?: Property.Columns<TLength>;
    /**
     * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
     *
     * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |    IE    |
     * | :------: | :-----: | :-------: | :----: | :------: |
     * |  **29**  | **20**  |   **9**   | **12** |  **11**  |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex
     */
    flex?: Property.Flex<TLength>;
    /**
     * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
     *
     * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **29**  | **28**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
     */
    flexFlow?: Property.FlexFlow;
    /**
     * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
     *
     * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font
     */
    font?: Property.Font;
    /**
     * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
     *
     * **Syntax**: `<'row-gap'> <'column-gap'>?`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **84** | **63**  |   No   | **84** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * |     Chrome      |     Firefox     |      Safari       |  Edge  | IE  |
     * | :-------------: | :-------------: | :---------------: | :----: | :-: |
     * |     **66**      |     **61**      |      **12**       | **16** | No  |
     * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | 10.1 _(grid-gap)_ |        |     |
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **66** | **61**  |   No   | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/gap
     */
    gap?: Property.Gap<TLength>;
    /**
     * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
     *
     * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid
     */
    grid?: Property.Grid;
    /**
     * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.
     *
     * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-area
     */
    gridArea?: Property.GridArea;
    /**
     * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
     *
     * **Syntax**: `<grid-line> [ / <grid-line> ]?`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-column
     */
    gridColumn?: Property.GridColumn;
    /**
     * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
     *
     * **Syntax**: `<grid-line> [ / <grid-line> ]?`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-row
     */
    gridRow?: Property.GridRow;
    /**
     * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.
     *
     * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template
     */
    gridTemplate?: Property.GridTemplate;
    /**
     * **Syntax**: `none | <integer>`
     *
     * **Initial value**: `none`
     */
    lineClamp?: Property.LineClamp;
    /**
     * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.
     *
     * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style
     */
    listStyle?: Property.ListStyle;
    /**
     * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.
     *
     * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin
     */
    margin?: Property.Margin<TLength>;
    /**
     * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
     *
     * **Syntax**: `<mask-layer>#`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **1**  |  **2**  | **3.2** | **12** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask
     */
    mask?: Property.Mask<TLength>;
    /**
     * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
     *
     * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
     *
     * |              Chrome              | Firefox |               Safari               |               Edge                | IE  |
     * | :------------------------------: | :-----: | :--------------------------------: | :-------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image)_ |   No    | **3.1** _(-webkit-mask-box-image)_ | **79** _(-webkit-mask-box-image)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
     */
    maskBorder?: Property.MaskBorder;
    /**
     * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
     *
     * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
     *
     * |    Chrome     | Firefox | Safari |  Edge  | IE  |
     * | :-----------: | :-----: | :----: | :----: | :-: |
     * |    **55**     | **72**  |   No   | **79** | No  |
     * | 46 _(motion)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset
     */
    motion?: Property.Offset<TLength>;
    /**
     * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
     *
     * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
     *
     * |    Chrome     | Firefox | Safari |  Edge  | IE  |
     * | :-----------: | :-----: | :----: | :----: | :-: |
     * |    **55**     | **72**  |   No   | **79** | No  |
     * | 46 _(motion)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset
     */
    offset?: Property.Offset<TLength>;
    /**
     * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
     *
     * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline
     */
    outline?: Property.Outline<TLength>;
    /**
     * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.
     *
     * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow
     */
    overflow?: Property.Overflow;
    /**
     * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.
     *
     * **Syntax**: `[ contain | none | auto ]{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **59**  |   No   | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior
     */
    overscrollBehavior?: Property.OverscrollBehavior;
    /**
     * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.
     *
     * **Syntax**: `[ <length> | <percentage> ]{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding
     */
    padding?: Property.Padding<TLength>;
    /**
     * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.
     *
     * **Syntax**: `<'align-items'> <'justify-items'>?`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/place-items
     */
    placeItems?: Property.PlaceItems;
    /**
     * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.
     *
     * **Syntax**: `<'align-self'> <'justify-self'>?`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/place-self
     */
    placeSelf?: Property.PlaceSelf;
    /**
     * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.
     *
     * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration
     */
    textDecoration?: Property.TextDecoration<TLength>;
    /**
     * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
     *
     * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
     */
    textEmphasis?: Property.TextEmphasis;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition
     */
    transition?: Property.Transition<TTime>;
}
export interface StandardProperties<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandProperties<TLength, TTime>, StandardShorthandProperties<TLength, TTime> {
}
export interface VendorLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    MozAnimationDelay?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     */
    MozAnimationDirection?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    MozAnimationDuration?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     */
    MozAnimationFillMode?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     */
    MozAnimationIterationCount?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     */
    MozAnimationName?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     */
    MozAnimationPlayState?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    MozAnimationTimingFunction?: Property.AnimationTimingFunction;
    /**
     * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
     *
     * **Syntax**: `none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized`
     *
     * **Initial value**: `none` (but this value is overridden in the user agent CSS)
     */
    MozAppearance?: Property.MozAppearance;
    /**
     * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
     *
     * **Syntax**: `visible | hidden`
     *
     * **Initial value**: `visible`
     */
    MozBackfaceVisibility?: Property.BackfaceVisibility;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-bottom-colors`** CSS property sets a list of colors for the bottom border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    MozBorderBottomColors?: Property.MozBorderBottomColors;
    /**
     * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     */
    MozBorderEndColor?: Property.BorderInlineEndColor;
    /**
     * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     */
    MozBorderEndStyle?: Property.BorderInlineEndStyle;
    /**
     * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     */
    MozBorderEndWidth?: Property.BorderInlineEndWidth<TLength>;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-left-colors`** CSS property sets a list of colors for the left border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    MozBorderLeftColors?: Property.MozBorderLeftColors;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-right-colors`** CSS property sets a list of colors for the right border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    MozBorderRightColors?: Property.MozBorderRightColors;
    /**
     * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     */
    MozBorderStartColor?: Property.BorderInlineStartColor;
    /**
     * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     */
    MozBorderStartStyle?: Property.BorderInlineStartStyle;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-top-colors`** CSS property sets a list of colors for the top border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    MozBorderTopColors?: Property.MozBorderTopColors;
    /**
     * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
     *
     * **Syntax**: `content-box | border-box`
     *
     * **Initial value**: `content-box`
     */
    MozBoxSizing?: Property.BoxSizing;
    /**
     * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
     *
     * **Syntax**: `<integer> | auto`
     *
     * **Initial value**: `auto`
     */
    MozColumnCount?: Property.ColumnCount;
    /**
     * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
     *
     * **Syntax**: `auto | balance | balance-all`
     *
     * **Initial value**: `balance`
     */
    MozColumnFill?: Property.ColumnFill;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     */
    MozColumnGap?: Property.ColumnGap<TLength>;
    /**
     * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    MozColumnRuleColor?: Property.ColumnRuleColor;
    /**
     * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     */
    MozColumnRuleStyle?: Property.ColumnRuleStyle;
    /**
     * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     */
    MozColumnRuleWidth?: Property.ColumnRuleWidth<TLength>;
    /**
     * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
     *
     * **Syntax**: `<length> | auto`
     *
     * **Initial value**: `auto`
     */
    MozColumnWidth?: Property.ColumnWidth<TLength>;
    /**
     * The `**-moz-context-properties**` property can be used within privileged contexts in Firefox to share the values of specified properties of the element with a child SVG image.
     *
     * **Syntax**: `none | [ fill | fill-opacity | stroke | stroke-opacity ]#`
     *
     * **Initial value**: `none`
     */
    MozContextProperties?: Property.MozContextProperties;
    /**
     * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
     *
     * **Syntax**: `normal | <feature-tag-value>#`
     *
     * **Initial value**: `normal`
     */
    MozFontFeatureSettings?: Property.FontFeatureSettings;
    /**
     * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
     *
     * **Syntax**: `normal | <string>`
     *
     * **Initial value**: `normal`
     */
    MozFontLanguageOverride?: Property.FontLanguageOverride;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     */
    MozHyphens?: Property.Hyphens;
    /**
     * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance.
     *
     * **Syntax**: `<shape> | auto`
     *
     * **Initial value**: `auto`
     */
    MozImageRegion?: Property.MozImageRegion;
    /**
     * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    MozMarginEnd?: Property.MarginInlineEnd<TLength>;
    /**
     * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    MozMarginStart?: Property.MarginInlineStart<TLength>;
    /**
     * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied.
     *
     * **Syntax**: `inline | block | horizontal | vertical`
     *
     * **Initial value**: `inline`
     */
    MozOrient?: Property.MozOrient;
    /**
     * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
     *
     * **Syntax**: `auto | never | always | <absolute-size> | <length>`
     *
     * **Initial value**: `auto`
     */
    MozOsxFontSmoothing?: Property.FontSmooth<TLength>;
    /**
     * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    MozPaddingEnd?: Property.PaddingInlineEnd<TLength>;
    /**
     * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    MozPaddingStart?: Property.PaddingInlineStart<TLength>;
    /**
     * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
     *
     * **Syntax**: `none | <length>`
     *
     * **Initial value**: `none`
     */
    MozPerspective?: Property.Perspective<TLength>;
    /**
     * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     */
    MozPerspectiveOrigin?: Property.PerspectiveOrigin<TLength>;
    /**
     * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `<xul:stack>` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible.
     *
     * **Syntax**: `ignore | stretch-to-fit`
     *
     * **Initial value**: `stretch-to-fit`
     */
    MozStackSizing?: Property.MozStackSizing;
    /**
     * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
     *
     * **Syntax**: `<integer> | <length>`
     *
     * **Initial value**: `8`
     */
    MozTabSize?: Property.TabSize<TLength>;
    /**
     * The **`-moz-text-blink`** non-standard Mozilla CSS extension specifies the blink mode.
     *
     * **Syntax**: `none | blink`
     *
     * **Initial value**: `none`
     */
    MozTextBlink?: Property.MozTextBlink;
    /**
     * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
     *
     * **Syntax**: `none | auto | <percentage>`
     *
     * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
     */
    MozTextSizeAdjust?: Property.TextSizeAdjust;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     */
    MozTransformOrigin?: Property.TransformOrigin<TLength>;
    /**
     * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
     *
     * **Syntax**: `flat | preserve-3d`
     *
     * **Initial value**: `flat`
     */
    MozTransformStyle?: Property.TransformStyle;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    MozTransitionDelay?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    MozTransitionDuration?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     */
    MozTransitionProperty?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    MozTransitionTimingFunction?: Property.TransitionTimingFunction;
    /**
     * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
     *
     * **Syntax**: `ignore | normal | select-after | select-before | select-menu | select-same | select-all | none`
     *
     * **Initial value**: `none`
     */
    MozUserFocus?: Property.MozUserFocus;
    /**
     * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user.
     *
     * **Syntax**: `read-only | read-write | write-only`
     *
     * **Initial value**: `read-only`
     */
    MozUserModify?: Property.MozUserModify;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     */
    MozUserSelect?: Property.UserSelect;
    /**
     * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X.
     *
     * **Syntax**: `drag | no-drag`
     *
     * **Initial value**: `drag`
     */
    MozWindowDragging?: Property.MozWindowDragging;
    /**
     * The **`-moz-window-shadow`** CSS property specifies whether a window will have a shadow. It only works on Mac OS X.
     *
     * **Syntax**: `default | menu | tooltip | sheet | none`
     *
     * **Initial value**: `default`
     */
    MozWindowShadow?: Property.MozWindowShadow;
    /**
     * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut.
     *
     * **Syntax**: `false | true`
     *
     * **Initial value**: `false`
     */
    msAccelerator?: Property.MsAccelerator;
    /**
     * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
     *
     * **Initial value**: `auto`
     */
    msAlignSelf?: Property.AlignSelf;
    /**
     * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation.
     *
     * **Syntax**: `tb | rl | bt | lr`
     *
     * **Initial value**: `tb`
     */
    msBlockProgression?: Property.MsBlockProgression;
    /**
     * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation.
     *
     * **Syntax**: `none | chained`
     *
     * **Initial value**: `none`
     */
    msContentZoomChaining?: Property.MsContentZoomChaining;
    /**
     * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor.
     *
     * **Syntax**: `<percentage>`
     *
     * **Initial value**: `400%`
     */
    msContentZoomLimitMax?: Property.MsContentZoomLimitMax;
    /**
     * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor.
     *
     * **Syntax**: `<percentage>`
     *
     * **Initial value**: `100%`
     */
    msContentZoomLimitMin?: Property.MsContentZoomLimitMin;
    /**
     * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located.
     *
     * **Syntax**: `snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )`
     *
     * **Initial value**: `snapInterval(0%, 100%)`
     */
    msContentZoomSnapPoints?: Property.MsContentZoomSnapPoints;
    /**
     * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points.
     *
     * **Syntax**: `none | proximity | mandatory`
     *
     * **Initial value**: `none`
     */
    msContentZoomSnapType?: Property.MsContentZoomSnapType;
    /**
     * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled.
     *
     * **Syntax**: `none | zoom`
     *
     * **Initial value**: zoom for the top level element, none for all other elements
     */
    msContentZooming?: Property.MsContentZooming;
    /**
     * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object.
     *
     * **Syntax**: `<string>`
     *
     * **Initial value**: "" (the empty string)
     */
    msFilter?: Property.MsFilter;
    /**
     * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
     *
     * **Syntax**: `row | row-reverse | column | column-reverse`
     *
     * **Initial value**: `row`
     */
    msFlexDirection?: Property.FlexDirection;
    /**
     * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     */
    msFlexPositive?: Property.FlexGrow;
    /**
     * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source.
     *
     * **Syntax**: `[ none | <custom-ident> ]#`
     *
     * **Initial value**: `none`
     */
    msFlowFrom?: Property.MsFlowFrom;
    /**
     * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source.
     *
     * **Syntax**: `[ none | <custom-ident> ]#`
     *
     * **Initial value**: `none`
     */
    msFlowInto?: Property.MsFlowInto;
    /**
     * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list>`
     *
     * **Initial value**: `none`
     */
    msGridColumns?: Property.MsGridColumns<TLength>;
    /**
     * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list>`
     *
     * **Initial value**: `none`
     */
    msGridRows?: Property.MsGridRows<TLength>;
    /**
     * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode.
     *
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     */
    msHighContrastAdjust?: Property.MsHighContrastAdjust;
    /**
     * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated.
     *
     * **Syntax**: `auto | <integer>{1,3}`
     *
     * **Initial value**: `auto`
     */
    msHyphenateLimitChars?: Property.MsHyphenateLimitChars;
    /**
     * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word.
     *
     * **Syntax**: `no-limit | <integer>`
     *
     * **Initial value**: `no-limit`
     */
    msHyphenateLimitLines?: Property.MsHyphenateLimitLines;
    /**
     * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone.
     *
     * **Syntax**: `<percentage> | <length>`
     *
     * **Initial value**: `0`
     */
    msHyphenateLimitZone?: Property.MsHyphenateLimitZone<TLength>;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     */
    msHyphens?: Property.Hyphens;
    /**
     * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11.
     *
     * **Syntax**: `auto | after`
     *
     * **Initial value**: `auto`
     */
    msImeAlign?: Property.MsImeAlign;
    /**
     * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
     *
     * **Initial value**: `auto`
     */
    msJustifySelf?: Property.JustifySelf;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     */
    msLineBreak?: Property.LineBreak;
    /**
     * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `0`
     */
    msOrder?: Property.Order;
    /**
     * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows.
     *
     * **Syntax**: `auto | none | scrollbar | -ms-autohiding-scrollbar`
     *
     * **Initial value**: `auto`
     */
    msOverflowStyle?: Property.MsOverflowStyle;
    /**
     * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     */
    msOverflowX?: Property.OverflowX;
    /**
     * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     */
    msOverflowY?: Property.OverflowY;
    /**
     * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation.
     *
     * **Syntax**: `chained | none`
     *
     * **Initial value**: `chained`
     */
    msScrollChaining?: Property.MsScrollChaining;
    /**
     * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property.
     *
     * **Syntax**: `auto | <length>`
     *
     * **Initial value**: `auto`
     */
    msScrollLimitXMax?: Property.MsScrollLimitXMax<TLength>;
    /**
     * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    msScrollLimitXMin?: Property.MsScrollLimitXMin<TLength>;
    /**
     * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property.
     *
     * **Syntax**: `auto | <length>`
     *
     * **Initial value**: `auto`
     */
    msScrollLimitYMax?: Property.MsScrollLimitYMax<TLength>;
    /**
     * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    msScrollLimitYMin?: Property.MsScrollLimitYMin<TLength>;
    /**
     * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion.
     *
     * **Syntax**: `none | railed`
     *
     * **Initial value**: `railed`
     */
    msScrollRails?: Property.MsScrollRails;
    /**
     * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis.
     *
     * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
     *
     * **Initial value**: `snapInterval(0px, 100%)`
     */
    msScrollSnapPointsX?: Property.MsScrollSnapPointsX;
    /**
     * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis.
     *
     * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
     *
     * **Initial value**: `snapInterval(0px, 100%)`
     */
    msScrollSnapPointsY?: Property.MsScrollSnapPointsY;
    /**
     * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
     *
     * **Syntax**: `none | proximity | mandatory`
     *
     * **Initial value**: `none`
     */
    msScrollSnapType?: Property.MsScrollSnapType;
    /**
     * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element.
     *
     * **Syntax**: `none | vertical-to-horizontal`
     *
     * **Initial value**: `none`
     */
    msScrollTranslation?: Property.MsScrollTranslation;
    /**
     * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: depends on user agent
     */
    msScrollbar3dlightColor?: Property.MsScrollbar3dlightColor;
    /**
     * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ButtonText`
     */
    msScrollbarArrowColor?: Property.MsScrollbarArrowColor;
    /**
     * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: depends on user agent
     */
    msScrollbarBaseColor?: Property.MsScrollbarBaseColor;
    /**
     * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDDarkShadow`
     */
    msScrollbarDarkshadowColor?: Property.MsScrollbarDarkshadowColor;
    /**
     * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDFace`
     */
    msScrollbarFaceColor?: Property.MsScrollbarFaceColor;
    /**
     * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDHighlight`
     */
    msScrollbarHighlightColor?: Property.MsScrollbarHighlightColor;
    /**
     * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDDarkShadow`
     */
    msScrollbarShadowColor?: Property.MsScrollbarShadowColor;
    /**
     * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text.
     *
     * **Syntax**: `none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space`
     *
     * **Initial value**: `none`
     */
    msTextAutospace?: Property.MsTextAutospace;
    /**
     * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
     *
     * **Syntax**: `none | all | [ digits <integer>? ]`
     *
     * **Initial value**: `none`
     */
    msTextCombineHorizontal?: Property.TextCombineUpright;
    /**
     * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
     *
     * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
     *
     * **Initial value**: `clip`
     */
    msTextOverflow?: Property.TextOverflow;
    /**
     * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
     *
     * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
     *
     * **Initial value**: `auto`
     */
    msTouchAction?: Property.TouchAction;
    /**
     * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection.
     *
     * **Syntax**: `grippers | none`
     *
     * **Initial value**: `grippers`
     */
    msTouchSelect?: Property.MsTouchSelect;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     */
    msTransform?: Property.Transform;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     */
    msTransformOrigin?: Property.TransformOrigin<TLength>;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    msTransitionDelay?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    msTransitionDuration?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     */
    msTransitionProperty?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    msTransitionTimingFunction?: Property.TransitionTimingFunction;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `none | element | text`
     *
     * **Initial value**: `text`
     */
    msUserSelect?: Property.MsUserSelect;
    /**
     * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
     *
     * **Syntax**: `normal | break-all | keep-all | break-word`
     *
     * **Initial value**: `normal`
     */
    msWordBreak?: Property.WordBreak;
    /**
     * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements.
     *
     * **Syntax**: `auto | both | start | end | maximum | clear`
     *
     * **Initial value**: `auto`
     */
    msWrapFlow?: Property.MsWrapFlow;
    /**
     * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    msWrapMargin?: Property.MsWrapMargin<TLength>;
    /**
     * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element.
     *
     * **Syntax**: `wrap | none`
     *
     * **Initial value**: `wrap`
     */
    msWrapThrough?: Property.MsWrapThrough;
    /**
     * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
     *
     * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
     *
     * **Initial value**: `horizontal-tb`
     */
    msWritingMode?: Property.WritingMode;
    /**
     * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
     *
     * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
     *
     * **Initial value**: `normal`
     */
    WebkitAlignContent?: Property.AlignContent;
    /**
     * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
     *
     * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
     *
     * **Initial value**: `normal`
     */
    WebkitAlignItems?: Property.AlignItems;
    /**
     * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
     *
     * **Initial value**: `auto`
     */
    WebkitAlignSelf?: Property.AlignSelf;
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    WebkitAnimationDelay?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     */
    WebkitAnimationDirection?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    WebkitAnimationDuration?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     */
    WebkitAnimationFillMode?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     */
    WebkitAnimationIterationCount?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     */
    WebkitAnimationName?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     */
    WebkitAnimationPlayState?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    WebkitAnimationTimingFunction?: Property.AnimationTimingFunction;
    /**
     * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
     *
     * **Syntax**: `none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button`
     *
     * **Initial value**: `none` (but this value is overridden in the user agent CSS)
     */
    WebkitAppearance?: Property.WebkitAppearance;
    /**
     * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     */
    WebkitBackdropFilter?: Property.BackdropFilter;
    /**
     * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
     *
     * **Syntax**: `visible | hidden`
     *
     * **Initial value**: `visible`
     */
    WebkitBackfaceVisibility?: Property.BackfaceVisibility;
    /**
     * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `border-box`
     */
    WebkitBackgroundClip?: Property.BackgroundClip;
    /**
     * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `padding-box`
     */
    WebkitBackgroundOrigin?: Property.BackgroundOrigin;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     */
    WebkitBackgroundSize?: Property.BackgroundSize<TLength>;
    /**
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    WebkitBorderBeforeColor?: Property.WebkitBorderBeforeColor;
    /**
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     */
    WebkitBorderBeforeStyle?: Property.WebkitBorderBeforeStyle;
    /**
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     */
    WebkitBorderBeforeWidth?: Property.WebkitBorderBeforeWidth<TLength>;
    /**
     * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    WebkitBorderBottomLeftRadius?: Property.BorderBottomLeftRadius<TLength>;
    /**
     * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    WebkitBorderBottomRightRadius?: Property.BorderBottomRightRadius<TLength>;
    /**
     * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
     *
     * **Syntax**: `<number-percentage>{1,4} && fill?`
     *
     * **Initial value**: `100%`
     */
    WebkitBorderImageSlice?: Property.BorderImageSlice;
    /**
     * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    WebkitBorderTopLeftRadius?: Property.BorderTopLeftRadius<TLength>;
    /**
     * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    WebkitBorderTopRightRadius?: Property.BorderTopRightRadius<TLength>;
    /**
     * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
     *
     * **Syntax**: `slice | clone`
     *
     * **Initial value**: `slice`
     */
    WebkitBoxDecorationBreak?: Property.BoxDecorationBreak;
    /**
     * The **`-webkit-box-reflect`** CSS property lets you reflect the content of an element in one specific direction.
     *
     * **Syntax**: `[ above | below | right | left ]? <length>? <image>?`
     *
     * **Initial value**: `none`
     */
    WebkitBoxReflect?: Property.WebkitBoxReflect<TLength>;
    /**
     * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
     *
     * **Syntax**: `none | <shadow>#`
     *
     * **Initial value**: `none`
     */
    WebkitBoxShadow?: Property.BoxShadow;
    /**
     * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
     *
     * **Syntax**: `content-box | border-box`
     *
     * **Initial value**: `content-box`
     */
    WebkitBoxSizing?: Property.BoxSizing;
    /**
     * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
     *
     * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
     *
     * **Initial value**: `none`
     */
    WebkitClipPath?: Property.ClipPath;
    /**
     * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
     *
     * **Syntax**: `<integer> | auto`
     *
     * **Initial value**: `auto`
     */
    WebkitColumnCount?: Property.ColumnCount;
    /**
     * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
     *
     * **Syntax**: `auto | balance | balance-all`
     *
     * **Initial value**: `balance`
     */
    WebkitColumnFill?: Property.ColumnFill;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     */
    WebkitColumnGap?: Property.ColumnGap<TLength>;
    /**
     * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    WebkitColumnRuleColor?: Property.ColumnRuleColor;
    /**
     * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     */
    WebkitColumnRuleStyle?: Property.ColumnRuleStyle;
    /**
     * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     */
    WebkitColumnRuleWidth?: Property.ColumnRuleWidth<TLength>;
    /**
     * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
     *
     * **Syntax**: `none | all`
     *
     * **Initial value**: `none`
     */
    WebkitColumnSpan?: Property.ColumnSpan;
    /**
     * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
     *
     * **Syntax**: `<length> | auto`
     *
     * **Initial value**: `auto`
     */
    WebkitColumnWidth?: Property.ColumnWidth<TLength>;
    /**
     * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     */
    WebkitFilter?: Property.Filter;
    /**
     * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
     *
     * **Syntax**: `content | <'width'>`
     *
     * **Initial value**: `auto`
     */
    WebkitFlexBasis?: Property.FlexBasis<TLength>;
    /**
     * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
     *
     * **Syntax**: `row | row-reverse | column | column-reverse`
     *
     * **Initial value**: `row`
     */
    WebkitFlexDirection?: Property.FlexDirection;
    /**
     * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     */
    WebkitFlexGrow?: Property.FlexGrow;
    /**
     * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `1`
     */
    WebkitFlexShrink?: Property.FlexShrink;
    /**
     * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
     *
     * **Syntax**: `nowrap | wrap | wrap-reverse`
     *
     * **Initial value**: `nowrap`
     */
    WebkitFlexWrap?: Property.FlexWrap;
    /**
     * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
     *
     * **Syntax**: `normal | <feature-tag-value>#`
     *
     * **Initial value**: `normal`
     */
    WebkitFontFeatureSettings?: Property.FontFeatureSettings;
    /**
     * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
     *
     * **Syntax**: `auto | normal | none`
     *
     * **Initial value**: `auto`
     */
    WebkitFontKerning?: Property.FontKerning;
    /**
     * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
     *
     * **Syntax**: `auto | never | always | <absolute-size> | <length>`
     *
     * **Initial value**: `auto`
     */
    WebkitFontSmoothing?: Property.FontSmooth<TLength>;
    /**
     * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
     *
     * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
     *
     * **Initial value**: `normal`
     */
    WebkitFontVariantLigatures?: Property.FontVariantLigatures;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     */
    WebkitHyphens?: Property.Hyphens;
    /**
     * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
     *
     * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
     *
     * **Initial value**: `normal`
     */
    WebkitJustifyContent?: Property.JustifyContent;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     */
    WebkitLineBreak?: Property.LineBreak;
    /**
     * The **`-webkit-line-clamp`** CSS property allows limiting of the contents of a block container to the specified number of lines.
     *
     * **Syntax**: `none | <integer>`
     *
     * **Initial value**: `none`
     */
    WebkitLineClamp?: Property.WebkitLineClamp;
    /**
     * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    WebkitMarginEnd?: Property.MarginInlineEnd<TLength>;
    /**
     * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    WebkitMarginStart?: Property.MarginInlineStart<TLength>;
    /**
     * If a `-webkit-mask-image` is specified, `-webkit-mask-attachment` determines whether the mask image's position is fixed within the viewport, or scrolls along with its containing block.
     *
     * **Syntax**: `<attachment>#`
     *
     * **Initial value**: `scroll`
     */
    WebkitMaskAttachment?: Property.WebkitMaskAttachment;
    /**
     * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
     *
     * **Syntax**: `[ <length> | <number> ]{1,4}`
     *
     * **Initial value**: `0`
     */
    WebkitMaskBoxImageOutset?: Property.MaskBorderOutset<TLength>;
    /**
     * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
     *
     * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
     *
     * **Initial value**: `stretch`
     */
    WebkitMaskBoxImageRepeat?: Property.MaskBorderRepeat;
    /**
     * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
     *
     * **Syntax**: `<number-percentage>{1,4} fill?`
     *
     * **Initial value**: `0`
     */
    WebkitMaskBoxImageSlice?: Property.MaskBorderSlice;
    /**
     * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
     *
     * **Syntax**: `none | <image>`
     *
     * **Initial value**: `none`
     */
    WebkitMaskBoxImageSource?: Property.MaskBorderSource;
    /**
     * The **`mask-border-width`** CSS property sets the width of an element's mask border.
     *
     * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
     *
     * **Initial value**: `auto`
     */
    WebkitMaskBoxImageWidth?: Property.MaskBorderWidth<TLength>;
    /**
     * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
     *
     * **Syntax**: `[ <box> | border | padding | content | text ]#`
     *
     * **Initial value**: `border`
     */
    WebkitMaskClip?: Property.WebkitMaskClip;
    /**
     * The **`-webkit-mask-composite`** property specifies the manner in which multiple mask images applied to the same element are composited with one another. Mask images are composited in the opposite order that they are declared with the `-webkit-mask-image` property.
     *
     * **Syntax**: `<composite-style>#`
     *
     * **Initial value**: `source-over`
     */
    WebkitMaskComposite?: Property.WebkitMaskComposite;
    /**
     * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
     *
     * **Syntax**: `<mask-reference>#`
     *
     * **Initial value**: `none`
     */
    WebkitMaskImage?: Property.WebkitMaskImage;
    /**
     * The **`mask-origin`** CSS property sets the origin of a mask.
     *
     * **Syntax**: `[ <box> | border | padding | content ]#`
     *
     * **Initial value**: `padding`
     */
    WebkitMaskOrigin?: Property.WebkitMaskOrigin;
    /**
     * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
     *
     * **Syntax**: `<position>#`
     *
     * **Initial value**: `0% 0%`
     */
    WebkitMaskPosition?: Property.WebkitMaskPosition<TLength>;
    /**
     * The `-webkit-mask-position-x` CSS property sets the initial horizontal position of a mask image.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right ]#`
     *
     * **Initial value**: `0%`
     */
    WebkitMaskPositionX?: Property.WebkitMaskPositionX<TLength>;
    /**
     * The `-webkit-mask-position-y` CSS property sets the initial vertical position of a mask image.
     *
     * **Syntax**: `[ <length-percentage> | top | center | bottom ]#`
     *
     * **Initial value**: `0%`
     */
    WebkitMaskPositionY?: Property.WebkitMaskPositionY<TLength>;
    /**
     * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
     *
     * **Syntax**: `<repeat-style>#`
     *
     * **Initial value**: `repeat`
     */
    WebkitMaskRepeat?: Property.WebkitMaskRepeat;
    /**
     * The `-webkit-mask-repeat-x` property specifies whether and how a mask image is repeated (tiled) horizontally.
     *
     * **Syntax**: `repeat | no-repeat | space | round`
     *
     * **Initial value**: `repeat`
     */
    WebkitMaskRepeatX?: Property.WebkitMaskRepeatX;
    /**
     * The `-webkit-mask-repeat-y` property sets whether and how a mask image is repeated (tiled) vertically.
     *
     * **Syntax**: `repeat | no-repeat | space | round`
     *
     * **Initial value**: `repeat`
     */
    WebkitMaskRepeatY?: Property.WebkitMaskRepeatY;
    /**
     * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     */
    WebkitMaskSize?: Property.WebkitMaskSize<TLength>;
    /**
     * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'max-width'>`
     *
     * **Initial value**: `0`
     */
    WebkitMaxInlineSize?: Property.MaxInlineSize<TLength>;
    /**
     * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `0`
     */
    WebkitOrder?: Property.Order;
    /**
     * The `-webkit-overflow-scrolling` CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
     *
     * **Syntax**: `auto | touch`
     *
     * **Initial value**: `auto`
     */
    WebkitOverflowScrolling?: Property.WebkitOverflowScrolling;
    /**
     * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    WebkitPaddingEnd?: Property.PaddingInlineEnd<TLength>;
    /**
     * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    WebkitPaddingStart?: Property.PaddingInlineStart<TLength>;
    /**
     * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
     *
     * **Syntax**: `none | <length>`
     *
     * **Initial value**: `none`
     */
    WebkitPerspective?: Property.Perspective<TLength>;
    /**
     * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     */
    WebkitPerspectiveOrigin?: Property.PerspectiveOrigin<TLength>;
    /**
     * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
     *
     * **Syntax**: `economy | exact`
     *
     * **Initial value**: `economy`
     */
    WebkitPrintColorAdjust?: Property.ColorAdjust;
    /**
     * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
     *
     * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
     *
     * **Initial value**: `alternate`
     */
    WebkitRubyPosition?: Property.RubyPosition;
    /**
     * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
     *
     * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
     *
     * **Initial value**: `none`
     */
    WebkitScrollSnapType?: Property.ScrollSnapType;
    /**
     * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     */
    WebkitShapeMargin?: Property.ShapeMargin<TLength>;
    /**
     * **`-webkit-tap-highlight-color`** is a non-standard CSS property that sets the color of the highlight that appears over a link while it's being tapped. The highlighting indicates to the user that their tap is being successfully recognized, and indicates which element they're tapping on.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `black`
     */
    WebkitTapHighlightColor?: Property.WebkitTapHighlightColor;
    /**
     * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
     *
     * **Syntax**: `none | all | [ digits <integer>? ]`
     *
     * **Initial value**: `none`
     */
    WebkitTextCombine?: Property.TextCombineUpright;
    /**
     * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    WebkitTextDecorationColor?: Property.TextDecorationColor;
    /**
     * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
     *
     * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
     *
     * **Initial value**: `none`
     */
    WebkitTextDecorationLine?: Property.TextDecorationLine;
    /**
     * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
     *
     * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
     *
     * **Initial value**: `objects`
     */
    WebkitTextDecorationSkip?: Property.TextDecorationSkip;
    /**
     * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
     *
     * **Syntax**: `solid | double | dotted | dashed | wavy`
     *
     * **Initial value**: `solid`
     */
    WebkitTextDecorationStyle?: Property.TextDecorationStyle;
    /**
     * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    WebkitTextEmphasisColor?: Property.TextEmphasisColor;
    /**
     * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
     *
     * **Syntax**: `[ over | under ] && [ right | left ]`
     *
     * **Initial value**: `over right`
     */
    WebkitTextEmphasisPosition?: Property.TextEmphasisPosition;
    /**
     * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
     *
     * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
     *
     * **Initial value**: `none`
     */
    WebkitTextEmphasisStyle?: Property.TextEmphasisStyle;
    /**
     * The **`-webkit-text-fill-color`** CSS property specifies the fill color of characters of text. If this property is not set, the value of the `color` property is used.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    WebkitTextFillColor?: Property.WebkitTextFillColor;
    /**
     * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
     *
     * **Syntax**: `mixed | upright | sideways`
     *
     * **Initial value**: `mixed`
     */
    WebkitTextOrientation?: Property.TextOrientation;
    /**
     * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
     *
     * **Syntax**: `none | auto | <percentage>`
     *
     * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
     */
    WebkitTextSizeAdjust?: Property.TextSizeAdjust;
    /**
     * The **`-webkit-text-stroke-color`** CSS property specifies the stroke color of characters of text. If this property is not set, the value of the `color` property is used.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    WebkitTextStrokeColor?: Property.WebkitTextStrokeColor;
    /**
     * The **`-webkit-text-stroke-width`** CSS property specifies the width of the stroke for text.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    WebkitTextStrokeWidth?: Property.WebkitTextStrokeWidth<TLength>;
    /**
     * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
     *
     * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
     *
     * **Initial value**: `auto`
     */
    WebkitTextUnderlinePosition?: Property.TextUnderlinePosition;
    /**
     * The `-webkit-touch-callout` CSS property controls the display of the default callout shown when you touch and hold a touch target.
     *
     * **Syntax**: `default | none`
     *
     * **Initial value**: `default`
     */
    WebkitTouchCallout?: Property.WebkitTouchCallout;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     */
    WebkitTransform?: Property.Transform;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     */
    WebkitTransformOrigin?: Property.TransformOrigin<TLength>;
    /**
     * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
     *
     * **Syntax**: `flat | preserve-3d`
     *
     * **Initial value**: `flat`
     */
    WebkitTransformStyle?: Property.TransformStyle;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    WebkitTransitionDelay?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    WebkitTransitionDuration?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     */
    WebkitTransitionProperty?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    WebkitTransitionTimingFunction?: Property.TransitionTimingFunction;
    /**
     * **Syntax**: `read-only | read-write | read-write-plaintext-only`
     *
     * **Initial value**: `read-only`
     */
    WebkitUserModify?: Property.WebkitUserModify;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     */
    WebkitUserSelect?: Property.UserSelect;
    /**
     * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
     *
     * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
     *
     * **Initial value**: `horizontal-tb`
     */
    WebkitWritingMode?: Property.WritingMode;
}
export interface VendorShorthandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     */
    MozAnimation?: Property.Animation<TTime>;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     */
    MozBorderImage?: Property.BorderImage;
    /**
     * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
     */
    MozColumnRule?: Property.ColumnRule<TLength>;
    /**
     * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
     *
     * **Syntax**: `<'column-width'> || <'column-count'>`
     */
    MozColumns?: Property.Columns<TLength>;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     */
    MozTransition?: Property.Transition<TTime>;
    /**
     * The **`-ms-content-zoom-limit`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-limit-min` and `-ms-content-zoom-limit-max` properties.
     *
     * **Syntax**: `<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>`
     */
    msContentZoomLimit?: Property.MsContentZoomLimit;
    /**
     * The **`-ms-content-zoom-snap`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-snap-type` and `-ms-content-zoom-snap-points` properties.
     *
     * **Syntax**: `<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>`
     */
    msContentZoomSnap?: Property.MsContentZoomSnap;
    /**
     * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
     *
     * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
     */
    msFlex?: Property.Flex<TLength>;
    /**
     * The **\-ms-scroll-limit** CSS property is a Microsoft extension that specifies values for the `-ms-scroll-limit-x-min`, `-ms-scroll-limit-y-min`, `-ms-scroll-limit-x-max`, and `-ms-scroll-limit-y-max` properties.
     *
     * **Syntax**: `<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>`
     */
    msScrollLimit?: Property.MsScrollLimit;
    /**
     * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-x` properties.
     *
     * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>`
     */
    msScrollSnapX?: Property.MsScrollSnapX;
    /**
     * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-y` properties.
     *
     * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>`
     */
    msScrollSnapY?: Property.MsScrollSnapY;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     */
    msTransition?: Property.Transition<TTime>;
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     */
    WebkitAnimation?: Property.Animation<TTime>;
    /**
     * The **`-webkit-border-before`** CSS property is a shorthand property for setting the individual logical block start border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-width'> || <'border-style'> || <color>`
     */
    WebkitBorderBefore?: Property.WebkitBorderBefore<TLength>;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     */
    WebkitBorderImage?: Property.BorderImage;
    /**
     * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
     *
     * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
     */
    WebkitBorderRadius?: Property.BorderRadius<TLength>;
    /**
     * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
     */
    WebkitColumnRule?: Property.ColumnRule<TLength>;
    /**
     * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
     *
     * **Syntax**: `<'column-width'> || <'column-count'>`
     */
    WebkitColumns?: Property.Columns<TLength>;
    /**
     * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
     *
     * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
     */
    WebkitFlex?: Property.Flex<TLength>;
    /**
     * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
     *
     * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
     */
    WebkitFlexFlow?: Property.FlexFlow;
    /**
     * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
     *
     * **Syntax**: `[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#`
     */
    WebkitMask?: Property.WebkitMask<TLength>;
    /**
     * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
     *
     * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
     */
    WebkitMaskBoxImage?: Property.MaskBorder;
    /**
     * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
     *
     * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
     */
    WebkitTextEmphasis?: Property.TextEmphasis;
    /**
     * The **`-webkit-text-stroke`** CSS property specifies the width and color of strokes for text characters. This is a shorthand property for the longhand properties `-webkit-text-stroke-width` and `-webkit-text-stroke-color`.
     *
     * **Syntax**: `<length> || <color>`
     */
    WebkitTextStroke?: Property.WebkitTextStroke<TLength>;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     */
    WebkitTransition?: Property.Transition<TTime>;
}
export interface VendorProperties<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandProperties<TLength, TTime>, VendorShorthandProperties<TLength, TTime> {
}
export interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * In combination with `elevation`, the **`azimuth`** CSS property enables different audio sources to be positioned spatially for aural presentation. This is important in that it provides a natural way to tell several voices apart, as each can be positioned to originate at a different location on the sound stage. Stereo output produce a lateral sound stage, while binaural headphones and multi-speaker setups allow for a fully three-dimensional stage.
     *
     * **Syntax**: `<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards`
     *
     * **Initial value**: `center`
     *
     * @deprecated
     */
    azimuth?: Property.Azimuth;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    boxAlign?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    boxDirection?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    boxFlex?: Property.BoxFlex;
    /**
     * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    boxFlexGroup?: Property.BoxFlexGroup;
    /**
     * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
     *
     * **Syntax**: `single | multiple`
     *
     * **Initial value**: `single`
     *
     * @deprecated
     */
    boxLines?: Property.BoxLines;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    boxOrdinalGroup?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    boxOrient?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    boxPack?: Property.BoxPack;
    /**
     * The **`clip`** CSS property defines a visible portion of an element. The `clip` property applies only to absolutely positioned elements — that is, elements with `position:absolute` or `position:fixed`.
     *
     * **Syntax**: `<shape> | auto`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    clip?: Property.Clip;
    /**
     * The **`font-variant-alternates`** CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in `@font-feature-values`.
     *
     * **Syntax**: `normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    fontVariantAlternates?: Property.FontVariantAlternates;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    gridColumnGap?: Property.GridColumnGap<TLength>;
    /**
     * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
     *
     * **Syntax**: `<'grid-row-gap'> <'grid-column-gap'>?`
     *
     * @deprecated
     */
    gridGap?: Property.GridGap<TLength>;
    /**
     * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    gridRowGap?: Property.GridRowGap<TLength>;
    /**
     * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
     *
     * **Syntax**: `auto | normal | active | inactive | disabled`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    imeMode?: Property.ImeMode;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    offsetBlock?: Property.InsetBlock<TLength>;
    /**
     * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    offsetBlockEnd?: Property.InsetBlockEnd<TLength>;
    /**
     * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    offsetBlockStart?: Property.InsetBlockStart<TLength>;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    offsetInline?: Property.InsetInline<TLength>;
    /**
     * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    offsetInlineEnd?: Property.InsetInlineEnd<TLength>;
    /**
     * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    offsetInlineStart?: Property.InsetInlineStart<TLength>;
    /**
     * The **`scroll-snap-coordinate`** CSS property defines the x and y coordinate positions within an element that will align with its nearest ancestor scroll container's `scroll-snap-destination` for each respective axis.
     *
     * **Syntax**: `none | <position>#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    scrollSnapCoordinate?: Property.ScrollSnapCoordinate<TLength>;
    /**
     * The **`scroll-snap-destination`** CSS property defines the position in x and y coordinates within the scroll container's visual viewport which element snap points align with.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `0px 0px`
     *
     * @deprecated
     */
    scrollSnapDestination?: Property.ScrollSnapDestination<TLength>;
    /**
     * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    scrollSnapPointsX?: Property.ScrollSnapPointsX;
    /**
     * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    scrollSnapPointsY?: Property.ScrollSnapPointsY;
    /**
     * The **`scroll-snap-type-x`** CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one.
     *
     * **Syntax**: `none | mandatory | proximity`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    scrollSnapTypeX?: Property.ScrollSnapTypeX;
    /**
     * The **`scroll-snap-type-y`** CSS property defines how strictly snap points are enforced on the vertical axis of the scroll container in case there is one.
     *
     * **Syntax**: `none | mandatory | proximity`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    scrollSnapTypeY?: Property.ScrollSnapTypeY;
    /**
     * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `Scrollbar`
     *
     * @deprecated
     */
    scrollbarTrackColor?: Property.MsScrollbarTrackColor;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    KhtmlBoxAlign?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    KhtmlBoxDirection?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    KhtmlBoxFlex?: Property.BoxFlex;
    /**
     * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    KhtmlBoxFlexGroup?: Property.BoxFlexGroup;
    /**
     * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
     *
     * **Syntax**: `single | multiple`
     *
     * **Initial value**: `single`
     *
     * @deprecated
     */
    KhtmlBoxLines?: Property.BoxLines;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    KhtmlBoxOrdinalGroup?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    KhtmlBoxOrient?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    KhtmlBoxPack?: Property.BoxPack;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    KhtmlLineBreak?: Property.LineBreak;
    /**
     * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `1.0`
     *
     * @deprecated
     */
    KhtmlOpacity?: Property.Opacity;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    KhtmlUserSelect?: Property.UserSelect;
    /**
     * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `border-box`
     *
     * @deprecated
     */
    MozBackgroundClip?: Property.BackgroundClip;
    /**
     * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
     *
     * **Syntax**: `slice | clone`
     *
     * **Initial value**: `slice`
     *
     * @deprecated
     */
    MozBackgroundInlinePolicy?: Property.BoxDecorationBreak;
    /**
     * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `padding-box`
     *
     * @deprecated
     */
    MozBackgroundOrigin?: Property.BackgroundOrigin;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     *
     * @deprecated
     */
    MozBackgroundSize?: Property.BackgroundSize<TLength>;
    /**
     * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
     *
     * **Syntax**: `<url> | none`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    MozBinding?: Property.MozBinding;
    /**
     * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
     *
     * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
     *
     * @deprecated
     */
    MozBorderRadius?: Property.BorderRadius<TLength>;
    /**
     * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozBorderRadiusBottomleft?: Property.BorderBottomLeftRadius<TLength>;
    /**
     * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozBorderRadiusBottomright?: Property.BorderBottomRightRadius<TLength>;
    /**
     * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozBorderRadiusTopleft?: Property.BorderTopLeftRadius<TLength>;
    /**
     * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozBorderRadiusTopright?: Property.BorderTopRightRadius<TLength>;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    MozBoxAlign?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    MozBoxDirection?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozBoxFlex?: Property.BoxFlex;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    MozBoxOrdinalGroup?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    MozBoxOrient?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    MozBoxPack?: Property.BoxPack;
    /**
     * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
     *
     * **Syntax**: `none | <shadow>#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    MozBoxShadow?: Property.BoxShadow;
    /**
     * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness.
     *
     * **Syntax**: `border-box | content-box | margin-box | padding-box`
     *
     * **Initial value**: `content-box`
     *
     * @deprecated
     */
    MozFloatEdge?: Property.MozFloatEdge;
    /**
     * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute.
     *
     * **Syntax**: `<integer [0,1]>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon;
    /**
     * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `1.0`
     *
     * @deprecated
     */
    MozOpacity?: Property.Opacity;
    /**
     * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
     *
     * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
     *
     * @deprecated
     */
    MozOutline?: Property.Outline<TLength>;
    /**
     * The **`outline-color`** CSS property sets the color of an element's outline.
     *
     * **Syntax**: `<color> | invert`
     *
     * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
     *
     * @deprecated
     */
    MozOutlineColor?: Property.OutlineColor;
    /**
     * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
     *
     * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
     *
     * @deprecated
     */
    MozOutlineRadius?: Property.MozOutlineRadius<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<TLength>;
    /**
     * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `auto | <'border-style'>`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    MozOutlineStyle?: Property.OutlineStyle;
    /**
     * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * @deprecated
     */
    MozOutlineWidth?: Property.OutlineWidth<TLength>;
    /**
     * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
     *
     * **Syntax**: `auto | start | end | left | right | center | justify`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    MozTextAlignLast?: Property.TextAlignLast;
    /**
     * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * @deprecated
     */
    MozTextDecorationColor?: Property.TextDecorationColor;
    /**
     * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
     *
     * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    MozTextDecorationLine?: Property.TextDecorationLine;
    /**
     * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
     *
     * **Syntax**: `solid | double | dotted | dashed | wavy`
     *
     * **Initial value**: `solid`
     *
     * @deprecated
     */
    MozTextDecorationStyle?: Property.TextDecorationStyle;
    /**
     * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
     *
     * **Syntax**: `auto | none | enabled | disabled`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    MozUserInput?: Property.MozUserInput;
    /**
     * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
     *
     * **Syntax**: `auto | normal | active | inactive | disabled`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    msImeMode?: Property.ImeMode;
    /**
     * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `Scrollbar`
     *
     * @deprecated
     */
    msScrollbarTrackColor?: Property.MsScrollbarTrackColor;
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     *
     * @deprecated
     */
    OAnimation?: Property.Animation<TTime>;
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    OAnimationDelay?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    OAnimationDirection?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    OAnimationDuration?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    OAnimationFillMode?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    OAnimationIterationCount?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    OAnimationName?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     *
     * @deprecated
     */
    OAnimationPlayState?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * @deprecated
     */
    OAnimationTimingFunction?: Property.AnimationTimingFunction;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     *
     * @deprecated
     */
    OBackgroundSize?: Property.BackgroundSize<TLength>;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     *
     * @deprecated
     */
    OBorderImage?: Property.BorderImage;
    /**
     * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
     *
     * **Syntax**: `fill | contain | cover | none | scale-down`
     *
     * **Initial value**: `fill`
     *
     * @deprecated
     */
    OObjectFit?: Property.ObjectFit;
    /**
     * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     *
     * @deprecated
     */
    OObjectPosition?: Property.ObjectPosition<TLength>;
    /**
     * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
     *
     * **Syntax**: `<integer> | <length>`
     *
     * **Initial value**: `8`
     *
     * @deprecated
     */
    OTabSize?: Property.TabSize<TLength>;
    /**
     * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
     *
     * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
     *
     * **Initial value**: `clip`
     *
     * @deprecated
     */
    OTextOverflow?: Property.TextOverflow;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    OTransform?: Property.Transform;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     *
     * @deprecated
     */
    OTransformOrigin?: Property.TransformOrigin<TLength>;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     *
     * @deprecated
     */
    OTransition?: Property.Transition<TTime>;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    OTransitionDelay?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    OTransitionDuration?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     *
     * @deprecated
     */
    OTransitionProperty?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * @deprecated
     */
    OTransitionTimingFunction?: Property.TransitionTimingFunction;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    WebkitBoxAlign?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    WebkitBoxDirection?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    WebkitBoxFlex?: Property.BoxFlex;
    /**
     * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    WebkitBoxFlexGroup?: Property.BoxFlexGroup;
    /**
     * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
     *
     * **Syntax**: `single | multiple`
     *
     * **Initial value**: `single`
     *
     * @deprecated
     */
    WebkitBoxLines?: Property.BoxLines;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    WebkitBoxOrdinalGroup?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    WebkitBoxOrient?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    WebkitBoxPack?: Property.BoxPack;
    /**
     * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    WebkitScrollSnapPointsX?: Property.ScrollSnapPointsX;
    /**
     * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY;
}
export interface SvgProperties<TLength = (string & {}) | 0, TTime = string & {}> {
    alignmentBaseline?: Property.AlignmentBaseline;
    baselineShift?: Property.BaselineShift<TLength>;
    clip?: Property.Clip;
    clipPath?: Property.ClipPath;
    clipRule?: Property.ClipRule;
    color?: Property.Color;
    colorInterpolation?: Property.ColorInterpolation;
    colorRendering?: Property.ColorRendering;
    cursor?: Property.Cursor;
    direction?: Property.Direction;
    display?: Property.Display;
    dominantBaseline?: Property.DominantBaseline;
    fill?: Property.Fill;
    fillOpacity?: Property.FillOpacity;
    fillRule?: Property.FillRule;
    filter?: Property.Filter;
    floodColor?: Property.FloodColor;
    floodOpacity?: Property.FloodOpacity;
    font?: Property.Font;
    fontFamily?: Property.FontFamily;
    fontSize?: Property.FontSize<TLength>;
    fontSizeAdjust?: Property.FontSizeAdjust;
    fontStretch?: Property.FontStretch;
    fontStyle?: Property.FontStyle;
    fontVariant?: Property.FontVariant;
    fontWeight?: Property.FontWeight;
    glyphOrientationVertical?: Property.GlyphOrientationVertical;
    imageRendering?: Property.ImageRendering;
    letterSpacing?: Property.LetterSpacing<TLength>;
    lightingColor?: Property.LightingColor;
    lineHeight?: Property.LineHeight<TLength>;
    marker?: Property.Marker;
    markerEnd?: Property.MarkerEnd;
    markerMid?: Property.MarkerMid;
    markerStart?: Property.MarkerStart;
    mask?: Property.Mask<TLength>;
    opacity?: Property.Opacity;
    overflow?: Property.Overflow;
    paintOrder?: Property.PaintOrder;
    pointerEvents?: Property.PointerEvents;
    shapeRendering?: Property.ShapeRendering;
    stopColor?: Property.StopColor;
    stopOpacity?: Property.StopOpacity;
    stroke?: Property.Stroke;
    strokeDasharray?: Property.StrokeDasharray<TLength>;
    strokeDashoffset?: Property.StrokeDashoffset<TLength>;
    strokeLinecap?: Property.StrokeLinecap;
    strokeLinejoin?: Property.StrokeLinejoin;
    strokeMiterlimit?: Property.StrokeMiterlimit;
    strokeOpacity?: Property.StrokeOpacity;
    strokeWidth?: Property.StrokeWidth<TLength>;
    textAnchor?: Property.TextAnchor;
    textDecoration?: Property.TextDecoration<TLength>;
    textRendering?: Property.TextRendering;
    unicodeBidi?: Property.UnicodeBidi;
    vectorEffect?: Property.VectorEffect;
    visibility?: Property.Visibility;
    whiteSpace?: Property.WhiteSpace;
    wordSpacing?: Property.WordSpacing<TLength>;
    writingMode?: Property.WritingMode;
}
export interface Properties<TLength = (string & {}) | 0, TTime = string & {}> extends StandardProperties<TLength, TTime>, VendorProperties<TLength, TTime>, ObsoleteProperties<TLength, TTime>, SvgProperties<TLength, TTime> {
}
export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
     *
     * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **29**  | **28**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-content
     */
    "align-content"?: Property.AlignContent;
    /**
     * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
     *
     * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :------: | :-----: | :-----: | :----: | :----: |
     * |  **52**  | **20**  |  **9**  | **12** | **11** |
     * | 21 _-x-_ |         | 7 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-items
     */
    "align-items"?: Property.AlignItems;
    /**
     * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **36**  | **20**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  |      IE      |
     * | :----: | :-----: | :------: | :----: | :----------: |
     * | **57** | **52**  | **10.1** | **16** | **10** _-x-_ |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-self
     */
    "align-self"?: Property.AlignSelf;
    /**
     * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
     *
     * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   n/a   |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/align-tracks
     */
    "align-tracks"?: Property.AlignTracks;
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
     */
    "animation-delay"?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
     */
    "animation-direction"?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
     */
    "animation-duration"?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
     */
    "animation-fill-mode"?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count
     */
    "animation-iteration-count"?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-name
     */
    "animation-name"?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
     */
    "animation-play-state"?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
     */
    "animation-timing-function"?: Property.AnimationTimingFunction;
    /**
     * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
     *
     * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox |   Safari    |   Edge   | IE  |
     * | :-----: | :-----: | :---------: | :------: | :-: |
     * | **84**  | **80**  | **3** _-x-_ |  **84**  | No  |
     * | 1 _-x-_ | 1 _-x-_ |             | 12 _-x-_ |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/appearance
     */
    appearance?: Property.Appearance;
    /**
     * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.
     *
     * **Syntax**: `auto | <ratio>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **88** |   n/a   |   No   | **88** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
     */
    "aspect-ratio"?: Property.AspectRatio;
    /**
     * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |   Safari    |  Edge  | IE  |
     * | :----: | :-----: | :---------: | :----: | :-: |
     * | **76** |   n/a   | **9** _-x-_ | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter
     */
    "backdrop-filter"?: Property.BackdropFilter;
    /**
     * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
     *
     * **Syntax**: `visible | hidden`
     *
     * **Initial value**: `visible`
     *
     * |  Chrome  | Firefox  |    Safari     |  Edge  |   IE   |
     * | :------: | :------: | :-----------: | :----: | :----: |
     * |  **36**  |  **16**  | **5.1** _-x-_ | **12** | **10** |
     * | 12 _-x-_ | 10 _-x-_ |               |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
     */
    "backface-visibility"?: Property.BackfaceVisibility;
    /**
     * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
     *
     * **Syntax**: `<attachment>#`
     *
     * **Initial value**: `scroll`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
     */
    "background-attachment"?: Property.BackgroundAttachment;
    /**
     * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.
     *
     * **Syntax**: `<blend-mode>#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **35** | **30**  | **8**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode
     */
    "background-blend-mode"?: Property.BackgroundBlendMode;
    /**
     * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `border-box`
     *
     * | Chrome | Firefox |   Safari    |  Edge  |  IE   |
     * | :----: | :-----: | :---------: | :----: | :---: |
     * | **1**  |  **4**  | **3** _-x-_ | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
     */
    "background-clip"?: Property.BackgroundClip;
    /**
     * The **`background-color`** CSS property sets the background color of an element.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `transparent`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-color
     */
    "background-color"?: Property.BackgroundColor;
    /**
     * The **`background-image`** CSS property sets one or more background images on an element.
     *
     * **Syntax**: `<bg-image>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-image
     */
    "background-image"?: Property.BackgroundImage;
    /**
     * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `padding-box`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **4**  | **3**  | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-origin
     */
    "background-origin"?: Property.BackgroundOrigin;
    /**
     * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.
     *
     * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`
     *
     * **Initial value**: `left`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **49**  | **1**  | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
     */
    "background-position-x"?: Property.BackgroundPositionX<TLength>;
    /**
     * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.
     *
     * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`
     *
     * **Initial value**: `top`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **49**  | **1**  | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
     */
    "background-position-y"?: Property.BackgroundPositionY<TLength>;
    /**
     * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.
     *
     * **Syntax**: `<repeat-style>#`
     *
     * **Initial value**: `repeat`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
     */
    "background-repeat"?: Property.BackgroundRepeat;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **3**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-size
     */
    "background-size"?: Property.BackgroundSize<TLength>;
    /**
     * **Syntax**: `clip | ellipsis | <string>`
     *
     * **Initial value**: `clip`
     */
    "block-overflow"?: Property.BlockOverflow;
    /**
     * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'width'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/block-size
     */
    "block-size"?: Property.BlockSize<TLength>;
    /**
     * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>{1,2}`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
     */
    "border-block-color"?: Property.BorderBlockColor;
    /**
     * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
     */
    "border-block-end-color"?: Property.BorderBlockEndColor;
    /**
     * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
     */
    "border-block-end-style"?: Property.BorderBlockEndStyle;
    /**
     * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
     */
    "border-block-end-width"?: Property.BorderBlockEndWidth<TLength>;
    /**
     * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
     */
    "border-block-start-color"?: Property.BorderBlockStartColor;
    /**
     * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
     */
    "border-block-start-style"?: Property.BorderBlockStartStyle;
    /**
     * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
     */
    "border-block-start-width"?: Property.BorderBlockStartWidth<TLength>;
    /**
     * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
     */
    "border-block-style"?: Property.BorderBlockStyle;
    /**
     * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
     */
    "border-block-width"?: Property.BorderBlockWidth<TLength>;
    /**
     * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
     */
    "border-bottom-color"?: Property.BorderBottomColor;
    /**
     * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
     */
    "border-bottom-left-radius"?: Property.BorderBottomLeftRadius<TLength>;
    /**
     * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
     */
    "border-bottom-right-radius"?: Property.BorderBottomRightRadius<TLength>;
    /**
     * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
     */
    "border-bottom-style"?: Property.BorderBottomStyle;
    /**
     * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
     */
    "border-bottom-width"?: Property.BorderBottomWidth<TLength>;
    /**
     * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
     *
     * **Syntax**: `collapse | separate`
     *
     * **Initial value**: `separate`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
     */
    "border-collapse"?: Property.BorderCollapse;
    /**
     * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
     */
    "border-end-end-radius"?: Property.BorderEndEndRadius<TLength>;
    /**
     * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
     */
    "border-end-start-radius"?: Property.BorderEndStartRadius<TLength>;
    /**
     * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.
     *
     * **Syntax**: `[ <length> | <number> ]{1,4}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
     */
    "border-image-outset"?: Property.BorderImageOutset<TLength>;
    /**
     * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.
     *
     * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
     *
     * **Initial value**: `stretch`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
     */
    "border-image-repeat"?: Property.BorderImageRepeat;
    /**
     * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
     *
     * **Syntax**: `<number-percentage>{1,4} && fill?`
     *
     * **Initial value**: `100%`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
     */
    "border-image-slice"?: Property.BorderImageSlice;
    /**
     * The **`border-image-source`** CSS property sets the source image used to create an element's border image.
     *
     * **Syntax**: `none | <image>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **15**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
     */
    "border-image-source"?: Property.BorderImageSource;
    /**
     * The **`border-image-width`** CSS property sets the width of an element's border image.
     *
     * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
     *
     * **Initial value**: `1`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **15** | **13**  | **6**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
     */
    "border-image-width"?: Property.BorderImageWidth<TLength>;
    /**
     * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>{1,2}`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
     */
    "border-inline-color"?: Property.BorderInlineColor;
    /**
     * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome |           Firefox           |  Safari  |  Edge  | IE  |
     * | :----: | :-------------------------: | :------: | :----: | :-: |
     * | **69** |           **41**            | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-end-color)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
     */
    "border-inline-end-color"?: Property.BorderInlineEndColor;
    /**
     * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome |           Firefox           |  Safari  |  Edge  | IE  |
     * | :----: | :-------------------------: | :------: | :----: | :-: |
     * | **69** |           **41**            | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-end-style)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
     */
    "border-inline-end-style"?: Property.BorderInlineEndStyle;
    /**
     * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome |           Firefox           |  Safari  |  Edge  | IE  |
     * | :----: | :-------------------------: | :------: | :----: | :-: |
     * | **69** |           **41**            | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-end-width)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
     */
    "border-inline-end-width"?: Property.BorderInlineEndWidth<TLength>;
    /**
     * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome |            Firefox            |  Safari  |  Edge  | IE  |
     * | :----: | :---------------------------: | :------: | :----: | :-: |
     * | **69** |            **41**             | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-start-color)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
     */
    "border-inline-start-color"?: Property.BorderInlineStartColor;
    /**
     * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome |            Firefox            |  Safari  |  Edge  | IE  |
     * | :----: | :---------------------------: | :------: | :----: | :-: |
     * | **69** |            **41**             | **12.1** | **79** | No  |
     * |        | 3 _(-moz-border-start-style)_ |          |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
     */
    "border-inline-start-style"?: Property.BorderInlineStartStyle;
    /**
     * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
     */
    "border-inline-start-width"?: Property.BorderInlineStartWidth<TLength>;
    /**
     * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
     */
    "border-inline-style"?: Property.BorderInlineStyle;
    /**
     * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
     */
    "border-inline-width"?: Property.BorderInlineWidth<TLength>;
    /**
     * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
     */
    "border-left-color"?: Property.BorderLeftColor;
    /**
     * The **`border-left-style`** CSS property sets the line style of an element's left `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
     */
    "border-left-style"?: Property.BorderLeftStyle;
    /**
     * The **`border-left-width`** CSS property sets the width of the left border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
     */
    "border-left-width"?: Property.BorderLeftWidth<TLength>;
    /**
     * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color
     */
    "border-right-color"?: Property.BorderRightColor;
    /**
     * The **`border-right-style`** CSS property sets the line style of an element's right `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style
     */
    "border-right-style"?: Property.BorderRightStyle;
    /**
     * The **`border-right-width`** CSS property sets the width of the right border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width
     */
    "border-right-width"?: Property.BorderRightWidth<TLength>;
    /**
     * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.
     *
     * **Syntax**: `<length> <length>?`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
     */
    "border-spacing"?: Property.BorderSpacing<TLength>;
    /**
     * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
     */
    "border-start-end-radius"?: Property.BorderStartEndRadius<TLength>;
    /**
     * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **89** | **66**  |   No   | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
     */
    "border-start-start-radius"?: Property.BorderStartStartRadius<TLength>;
    /**
     * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color
     */
    "border-top-color"?: Property.BorderTopColor;
    /**
     * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
     */
    "border-top-left-radius"?: Property.BorderTopLeftRadius<TLength>;
    /**
     * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
     */
    "border-top-right-radius"?: Property.BorderTopRightRadius<TLength>;
    /**
     * The **`border-top-style`** CSS property sets the line style of an element's top `border`.
     *
     * **Syntax**: `<line-style>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style
     */
    "border-top-style"?: Property.BorderTopStyle;
    /**
     * The **`border-top-width`** CSS property sets the width of the top border of an element.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width
     */
    "border-top-width"?: Property.BorderTopWidth<TLength>;
    /**
     * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/bottom
     */
    bottom?: Property.Bottom<TLength>;
    /**
     * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
     *
     * **Syntax**: `slice | clone`
     *
     * **Initial value**: `slice`
     *
     * |    Chrome    | Firefox |    Safari     |     Edge     | IE  |
     * | :----------: | :-----: | :-----------: | :----------: | :-: |
     * | **22** _-x-_ | **32**  | **6.1** _-x-_ | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
     */
    "box-decoration-break"?: Property.BoxDecorationBreak;
    /**
     * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
     *
     * **Syntax**: `none | <shadow>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * | **10**  |  **4**  | **5.1** | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
     */
    "box-shadow"?: Property.BoxShadow;
    /**
     * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
     *
     * **Syntax**: `content-box | border-box`
     *
     * **Initial value**: `content-box`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * | **10**  | **29**  | **5.1** | **12** | **8** |
     * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing
     */
    "box-sizing"?: Property.BoxSizing;
    /**
     * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.
     *
     * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  |   No   | **12** | **10** |
     *
     * ---
     *
     * _Supported in Paged Media_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/break-after
     */
    "break-after"?: Property.BreakAfter;
    /**
     * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.
     *
     * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  |   No   | **12** | **10** |
     *
     * ---
     *
     * _Supported in Paged Media_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/break-before
     */
    "break-before"?: Property.BreakBefore;
    /**
     * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.
     *
     * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * _Supported in Paged Media_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **50** | **65**  | **10** | **12** | **10** |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/break-inside
     */
    "break-inside"?: Property.BreakInside;
    /**
     * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.
     *
     * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`
     *
     * **Initial value**: `top`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/caption-side
     */
    "caption-side"?: Property.CaptionSide;
    /**
     * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.
     *
     * **Syntax**: `auto | <color>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **53**  | **11.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/caret-color
     */
    "caret-color"?: Property.CaretColor;
    /**
     * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.
     *
     * **Syntax**: `none | left | right | both | inline-start | inline-end`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/clear
     */
    clear?: Property.Clear;
    /**
     * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
     *
     * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
     *
     * **Initial value**: `none`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **55**  | **3.5** |  **9.1**  | **12** | **10** |
     * | 23 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
     */
    "clip-path"?: Property.ClipPath;
    /**
     * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: Varies from one browser to another
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/color
     */
    color?: Property.Color;
    /**
     * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
     *
     * **Syntax**: `economy | exact`
     *
     * **Initial value**: `economy`
     *
     * |                Chrome                 | Firefox |                Safari                |                 Edge                  | IE  |
     * | :-----------------------------------: | :-----: | :----------------------------------: | :-----------------------------------: | :-: |
     * | **49** _(-webkit-print-color-adjust)_ | **48**  | **6** _(-webkit-print-color-adjust)_ | **79** _(-webkit-print-color-adjust)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust
     */
    "color-adjust"?: Property.ColorAdjust;
    /**
     * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
     *
     * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **81** |   No    | **13** | **81** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
     */
    "color-scheme"?: Property.ColorScheme;
    /**
     * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
     *
     * **Syntax**: `<integer> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-count
     */
    "column-count"?: Property.ColumnCount;
    /**
     * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
     *
     * **Syntax**: `auto | balance | balance-all`
     *
     * **Initial value**: `balance`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE   |
     * | :----: | :-----: | :-----: | :----: | :----: |
     * | **50** | **52**  |  **9**  | **12** | **10** |
     * |        |         | 8 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-fill
     */
    "column-fill"?: Property.ColumnFill;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **84** | **63**  |   No   | **84** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * |         Chrome         |        Firefox         |          Safari          |  Edge  | IE  |
     * | :--------------------: | :--------------------: | :----------------------: | :----: | :-: |
     * |         **66**         |         **61**         |         **12.1**         | **16** | No  |
     * | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ |        |     |
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  | **10**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
     */
    "column-gap"?: Property.ColumnGap<TLength>;
    /**
     * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color
     */
    "column-rule-color"?: Property.ColumnRuleColor;
    /**
     * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style
     */
    "column-rule-style"?: Property.ColumnRuleStyle;
    /**
     * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width
     */
    "column-rule-width"?: Property.ColumnRuleWidth<TLength>;
    /**
     * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
     *
     * **Syntax**: `none | all`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **50**  | **71**  |   **9**   | **12** | **10** |
     * | 6 _-x-_ |         | 5.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-span
     */
    "column-span"?: Property.ColumnSpan;
    /**
     * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
     *
     * **Syntax**: `<length> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **50**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-width
     */
    "column-width"?: Property.ColumnWidth<TLength>;
    /**
     * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.
     *
     * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **52** | **69**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/contain
     */
    contain?: Property.Contain;
    /**
     * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._
     *
     * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/content
     */
    content?: Property.Content;
    /**
     * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.
     *
     * **Syntax**: `visible | auto | hidden`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **85** |   No    |   No   | **85** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
     */
    "content-visibility"?: Property.ContentVisibility;
    /**
     * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.
     *
     * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **2**  |  **1**  | **3**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment
     */
    "counter-increment"?: Property.CounterIncrement;
    /**
     * The **`counter-reset`** CSS property resets a CSS counter to a given value.
     *
     * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **2**  |  **1**  | **3**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset
     */
    "counter-reset"?: Property.CounterReset;
    /**
     * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.
     *
     * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **85** | **68**  |   No   | **85** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
     */
    "counter-set"?: Property.CounterSet;
    /**
     * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.
     *
     * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/cursor
     */
    cursor?: Property.Cursor;
    /**
     * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).
     *
     * **Syntax**: `ltr | rtl`
     *
     * **Initial value**: `ltr`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **2**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/direction
     */
    direction?: Property.Direction;
    /**
     * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.
     *
     * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`
     *
     * **Initial value**: `inline`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/display
     */
    display?: Property.Display;
    /**
     * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
     *
     * **Syntax**: `show | hide`
     *
     * **Initial value**: `show`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
     */
    "empty-cells"?: Property.EmptyCells;
    /**
     * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  | IE  |
     * | :------: | :-----: | :-----: | :----: | :-: |
     * |  **53**  | **35**  | **9.1** | **12** | No  |
     * | 18 _-x-_ |         | 6 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/filter
     */
    filter?: Property.Filter;
    /**
     * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
     *
     * **Syntax**: `content | <'width'>`
     *
     * **Initial value**: `auto`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :------: | :-----: | :-----: | :----: | :----: |
     * |  **29**  | **22**  |  **9**  | **12** | **11** |
     * | 22 _-x-_ |         | 7 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis
     */
    "flex-basis"?: Property.FlexBasis<TLength>;
    /**
     * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
     *
     * **Syntax**: `row | row-reverse | column | column-reverse`
     *
     * **Initial value**: `row`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |    IE    |
     * | :------: | :-----: | :-----: | :----: | :------: |
     * |  **29**  | **20**  |  **9**  | **12** |  **11**  |
     * | 21 _-x-_ |         | 7 _-x-_ |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction
     */
    "flex-direction"?: Property.FlexDirection;
    /**
     * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |            IE            |
     * | :------: | :-----: | :-------: | :----: | :----------------------: |
     * |  **29**  | **20**  |   **9**   | **12** |          **11**          |
     * | 22 _-x-_ |         | 6.1 _-x-_ |        | 10 _(-ms-flex-positive)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
     */
    "flex-grow"?: Property.FlexGrow;
    /**
     * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `1`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :------: | :-----: | :-----: | :----: | :----: |
     * |  **29**  | **20**  |  **9**  | **12** | **10** |
     * | 22 _-x-_ |         | 8 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink
     */
    "flex-shrink"?: Property.FlexShrink;
    /**
     * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
     *
     * **Syntax**: `nowrap | wrap | wrap-reverse`
     *
     * **Initial value**: `nowrap`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **29**  | **28**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
     */
    "flex-wrap"?: Property.FlexWrap;
    /**
     * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).
     *
     * **Syntax**: `left | right | none | inline-start | inline-end`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/float
     */
    float?: Property.Float;
    /**
     * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.
     *
     * **Syntax**: `[ <family-name> | <generic-family> ]#`
     *
     * **Initial value**: depends on user agent
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-family
     */
    "font-family"?: Property.FontFamily;
    /**
     * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
     *
     * **Syntax**: `normal | <feature-tag-value>#`
     *
     * **Initial value**: `normal`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  |   IE   |
     * | :------: | :------: | :-----: | :----: | :----: |
     * |  **48**  |  **34**  | **9.1** | **15** | **10** |
     * | 16 _-x-_ | 15 _-x-_ |         |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings
     */
    "font-feature-settings"?: Property.FontFeatureSettings;
    /**
     * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
     *
     * **Syntax**: `auto | normal | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **33** | **32**  |  **9**  | **79** | No  |
     * |        |         | 6 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning
     */
    "font-kerning"?: Property.FontKerning;
    /**
     * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
     *
     * **Syntax**: `normal | <string>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **34**  |   No   |  No  | No  |
     * |        | 4 _-x-_ |        |      |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override
     */
    "font-language-override"?: Property.FontLanguageOverride;
    /**
     * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.
     *
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **79** | **62**  | **11** | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing
     */
    "font-optical-sizing"?: Property.FontOpticalSizing;
    /**
     * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.
     *
     * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-size
     */
    "font-size"?: Property.FontSize<TLength>;
    /**
     * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
     *
     * **Syntax**: `none | <number>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |  **1**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust
     */
    "font-size-adjust"?: Property.FontSizeAdjust;
    /**
     * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
     *
     * **Syntax**: `auto | never | always | <absolute-size> | <length>`
     *
     * **Initial value**: `auto`
     *
     * |              Chrome              |              Firefox               |              Safari              |               Edge                | IE  |
     * | :------------------------------: | :--------------------------------: | :------------------------------: | :-------------------------------: | :-: |
     * | **5** _(-webkit-font-smoothing)_ | **25** _(-moz-osx-font-smoothing)_ | **4** _(-webkit-font-smoothing)_ | **79** _(-webkit-font-smoothing)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-smooth
     */
    "font-smooth"?: Property.FontSmooth<TLength>;
    /**
     * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.
     *
     * **Syntax**: `<font-stretch-absolute>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **60** |  **9**  | **11** | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
     */
    "font-stretch"?: Property.FontStretch;
    /**
     * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.
     *
     * **Syntax**: `normal | italic | oblique <angle>?`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-style
     */
    "font-style"?: Property.FontStyle;
    /**
     * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.
     *
     * **Syntax**: `none | [ weight || style ]`
     *
     * **Initial value**: `weight style`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **34**  | **9**  |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
     */
    "font-synthesis"?: Property.FontSynthesis;
    /**
     * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
     *
     * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant
     */
    "font-variant"?: Property.FontVariant;
    /**
     * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.
     *
     * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **52** | **34**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps
     */
    "font-variant-caps"?: Property.FontVariantCaps;
    /**
     * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
     *
     * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **34**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
     */
    "font-variant-east-asian"?: Property.FontVariantEastAsian;
    /**
     * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
     *
     * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
     *
     * **Initial value**: `normal`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  | IE  |
     * | :------: | :-----: | :-----: | :----: | :-: |
     * |  **34**  | **34**  | **9.1** | **79** | No  |
     * | 31 _-x-_ |         | 7 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures
     */
    "font-variant-ligatures"?: Property.FontVariantLigatures;
    /**
     * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.
     *
     * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **52** | **34**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric
     */
    "font-variant-numeric"?: Property.FontVariantNumeric;
    /**
     * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
     *
     * **Syntax**: `normal | sub | super`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **34**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
     */
    "font-variant-position"?: Property.FontVariantPosition;
    /**
     * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.
     *
     * **Syntax**: `normal | [ <string> <number> ]#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **62** | **62**  | **11** | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
     */
    "font-variation-settings"?: Property.FontVariationSettings;
    /**
     * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.
     *
     * **Syntax**: `<font-weight-absolute> | bolder | lighter`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **2**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font-weight
     */
    "font-weight"?: Property.FontWeight;
    /**
     * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.
     *
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |              Edge               |                 IE                  |
     * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
     * | **89** |   No    |   No   |             **79**              | **10** _(-ms-high-contrast-adjust)_ |
     * |        |         |        | 12 _(-ms-high-contrast-adjust)_ |                                     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
     */
    "forced-color-adjust"?: Property.ForcedColorAdjust;
    /**
     * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.
     *
     * **Syntax**: `<track-size>+`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |             IE              |
     * | :----: | :-----: | :------: | :----: | :-------------------------: |
     * | **57** | **70**  | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
     */
    "grid-auto-columns"?: Property.GridAutoColumns<TLength>;
    /**
     * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
     *
     * **Syntax**: `[ row | column ] || dense`
     *
     * **Initial value**: `row`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow
     */
    "grid-auto-flow"?: Property.GridAutoFlow;
    /**
     * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.
     *
     * **Syntax**: `<track-size>+`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |            IE            |
     * | :----: | :-----: | :------: | :----: | :----------------------: |
     * | **57** | **70**  | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
     */
    "grid-auto-rows"?: Property.GridAutoRows<TLength>;
    /**
     * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
     */
    "grid-column-end"?: Property.GridColumnEnd;
    /**
     * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
     */
    "grid-column-start"?: Property.GridColumnStart;
    /**
     * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
     */
    "grid-row-end"?: Property.GridRowEnd;
    /**
     * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
     *
     * **Syntax**: `<grid-line>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start
     */
    "grid-row-start"?: Property.GridRowStart;
    /**
     * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.
     *
     * **Syntax**: `none | <string>+`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas
     */
    "grid-template-areas"?: Property.GridTemplateAreas;
    /**
     * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |             IE              |
     * | :----: | :-----: | :------: | :----: | :-------------------------: |
     * | **57** | **52**  | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
     */
    "grid-template-columns"?: Property.GridTemplateColumns<TLength>;
    /**
     * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |            IE            |
     * | :----: | :-----: | :------: | :----: | :----------------------: |
     * | **57** | **52**  | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
     */
    "grid-template-rows"?: Property.GridTemplateRows<TLength>;
    /**
     * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.
     *
     * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   No    | **10** |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation
     */
    "hanging-punctuation"?: Property.HangingPunctuation;
    /**
     * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/height
     */
    height?: Property.Height<TLength>;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     *
     * |  Chrome  | Firefox |    Safari     |     Edge     |      IE      |
     * | :------: | :-----: | :-----------: | :----------: | :----------: |
     * |  **55**  | **43**  | **5.1** _-x-_ | **12** _-x-_ | **10** _-x-_ |
     * | 13 _-x-_ | 6 _-x-_ |               |              |              |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
     */
    hyphens?: Property.Hyphens;
    /**
     * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.
     *
     * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`
     *
     * **Initial value**: `from-image`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **81** | **26**  | **13.1** | **81** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation
     */
    "image-orientation"?: Property.ImageOrientation;
    /**
     * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.
     *
     * **Syntax**: `auto | crisp-edges | pixelated`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **13** | **3.6** | **6**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
     */
    "image-rendering"?: Property.ImageRendering;
    /**
     * **Syntax**: `[ from-image || <resolution> ] && snap?`
     *
     * **Initial value**: `1dppx`
     */
    "image-resolution"?: Property.ImageResolution;
    /**
     * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
     *
     * **Syntax**: `normal | [ <number> <integer>? ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   No    | **9**  |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter
     */
    "initial-letter"?: Property.InitialLetter;
    /**
     * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'width'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
     */
    "inline-size"?: Property.InlineSize<TLength>;
    /**
     * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.
     *
     * **Syntax**: `<'top'>{1,4}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset
     */
    inset?: Property.Inset<TLength>;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
     */
    "inset-block"?: Property.InsetBlock<TLength>;
    /**
     * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
     */
    "inset-block-end"?: Property.InsetBlockEnd<TLength>;
    /**
     * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
     */
    "inset-block-start"?: Property.InsetBlockStart<TLength>;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
     */
    "inset-inline"?: Property.InsetInline<TLength>;
    /**
     * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
     */
    "inset-inline-end"?: Property.InsetInlineEnd<TLength>;
    /**
     * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **63**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
     */
    "inset-inline-start"?: Property.InsetInlineStart<TLength>;
    /**
     * The **`isolation`** CSS property determines whether an element must create a new stacking context.
     *
     * **Syntax**: `auto | isolate`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **41** | **36**  | **8**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/isolation
     */
    isolation?: Property.Isolation;
    /**
     * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
     *
     * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **52**  | **20**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-content
     */
    "justify-content"?: Property.JustifyContent;
    /**
     * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.
     *
     * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`
     *
     * **Initial value**: `legacy`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **52** | **20**  | **9**  | **12** | **11** |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **45**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
     */
    "justify-items"?: Property.JustifyItems;
    /**
     * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
     *
     * **Initial value**: `auto`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **45**  | **10.1** | **16** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox |  Safari  |  Edge  |      IE      |
     * | :----: | :-----: | :------: | :----: | :----------: |
     * | **57** | **45**  | **10.1** | **16** | **10** _-x-_ |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-self
     */
    "justify-self"?: Property.JustifySelf;
    /**
     * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.
     *
     * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   |   n/a   |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/justify-tracks
     */
    "justify-tracks"?: Property.JustifyTracks;
    /**
     * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/left
     */
    left?: Property.Left<TLength>;
    /**
     * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.
     *
     * **Syntax**: `normal | <length>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
     */
    "letter-spacing"?: Property.LetterSpacing<TLength>;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE    |
     * | :-----: | :-----: | :-----: | :----: | :-----: |
     * | **58**  | **69**  | **11**  | **14** | **5.5** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |         |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/line-break
     */
    "line-break"?: Property.LineBreak;
    /**
     * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.
     *
     * **Syntax**: `normal | <number> | <length> | <percentage>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/line-height
     */
    "line-height"?: Property.LineHeight<TLength>;
    /**
     * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |   No    |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step
     */
    "line-height-step"?: Property.LineHeightStep<TLength>;
    /**
     * The **`list-style-image`** CSS property sets an image to be used as the list item marker.
     *
     * **Syntax**: `<image> | none`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image
     */
    "list-style-image"?: Property.ListStyleImage;
    /**
     * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.
     *
     * **Syntax**: `inside | outside`
     *
     * **Initial value**: `outside`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position
     */
    "list-style-position"?: Property.ListStylePosition;
    /**
     * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
     *
     * **Syntax**: `<counter-style> | <string> | none`
     *
     * **Initial value**: `disc`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type
     */
    "list-style-type"?: Property.ListStyleType;
    /**
     * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
     */
    "margin-block"?: Property.MarginBlock<TLength>;
    /**
     * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
     */
    "margin-block-end"?: Property.MarginBlockEnd<TLength>;
    /**
     * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
     */
    "margin-block-start"?: Property.MarginBlockStart<TLength>;
    /**
     * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
     */
    "margin-bottom"?: Property.MarginBottom<TLength>;
    /**
     * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'margin-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
     */
    "margin-inline"?: Property.MarginInline<TLength>;
    /**
     * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * |          Chrome          |        Firefox        |          Safari          |  Edge  | IE  |
     * | :----------------------: | :-------------------: | :----------------------: | :----: | :-: |
     * |          **69**          |        **41**         |         **12.1**         | **79** | No  |
     * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
     */
    "margin-inline-end"?: Property.MarginInlineEnd<TLength>;
    /**
     * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     *
     * |           Chrome           |         Firefox         |           Safari           |  Edge  | IE  |
     * | :------------------------: | :---------------------: | :------------------------: | :----: | :-: |
     * |           **69**           |         **41**          |          **12.1**          | **79** | No  |
     * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
     */
    "margin-inline-start"?: Property.MarginInlineStart<TLength>;
    /**
     * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
     */
    "margin-left"?: Property.MarginLeft<TLength>;
    /**
     * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
     */
    "margin-right"?: Property.MarginRight<TLength>;
    /**
     * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
     */
    "margin-top"?: Property.MarginTop<TLength>;
    /**
     * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.
     *
     * **Syntax**: `luminance | alpha`
     *
     * **Initial value**: `alpha`
     */
    "mask-border-mode"?: Property.MaskBorderMode;
    /**
     * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
     *
     * **Syntax**: `[ <length> | <number> ]{1,4}`
     *
     * **Initial value**: `0`
     *
     * |                 Chrome                  | Firefox |                  Safari                   |                   Edge                   | IE  |
     * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-outset)_ |   No    | **3.1** _(-webkit-mask-box-image-outset)_ | **79** _(-webkit-mask-box-image-outset)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
     */
    "mask-border-outset"?: Property.MaskBorderOutset<TLength>;
    /**
     * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
     *
     * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
     *
     * **Initial value**: `stretch`
     *
     * |                 Chrome                  | Firefox |                  Safari                   |                   Edge                   | IE  |
     * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-repeat)_ |   No    | **3.1** _(-webkit-mask-box-image-repeat)_ | **79** _(-webkit-mask-box-image-repeat)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
     */
    "mask-border-repeat"?: Property.MaskBorderRepeat;
    /**
     * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
     *
     * **Syntax**: `<number-percentage>{1,4} fill?`
     *
     * **Initial value**: `0`
     *
     * |                 Chrome                 | Firefox |                  Safari                  |                  Edge                   | IE  |
     * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-slice)_ |   No    | **3.1** _(-webkit-mask-box-image-slice)_ | **79** _(-webkit-mask-box-image-slice)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
     */
    "mask-border-slice"?: Property.MaskBorderSlice;
    /**
     * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
     *
     * **Syntax**: `none | <image>`
     *
     * **Initial value**: `none`
     *
     * |                 Chrome                  | Firefox |                  Safari                   |                   Edge                   | IE  |
     * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-source)_ |   No    | **3.1** _(-webkit-mask-box-image-source)_ | **79** _(-webkit-mask-box-image-source)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
     */
    "mask-border-source"?: Property.MaskBorderSource;
    /**
     * The **`mask-border-width`** CSS property sets the width of an element's mask border.
     *
     * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
     *
     * **Initial value**: `auto`
     *
     * |                 Chrome                 | Firefox |                  Safari                  |                  Edge                   | IE  |
     * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image-width)_ |   No    | **3.1** _(-webkit-mask-box-image-width)_ | **79** _(-webkit-mask-box-image-width)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
     */
    "mask-border-width"?: Property.MaskBorderWidth<TLength>;
    /**
     * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
     *
     * **Syntax**: `[ <geometry-box> | no-clip ]#`
     *
     * **Initial value**: `border-box`
     *
     * |   Chrome    | Firefox |   Safari    |     Edge     | IE  |
     * | :---------: | :-----: | :---------: | :----------: | :-: |
     * | **1** _-x-_ | **53**  | **4** _-x-_ | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
     */
    "mask-clip"?: Property.MaskClip;
    /**
     * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
     *
     * **Syntax**: `<compositing-operator>#`
     *
     * **Initial value**: `add`
     *
     * | Chrome | Firefox | Safari | Edge  | IE  |
     * | :----: | :-----: | :----: | :---: | :-: |
     * |   No   | **53**  |   No   | 18-79 | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
     */
    "mask-composite"?: Property.MaskComposite;
    /**
     * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
     *
     * **Syntax**: `<mask-reference>#`
     *
     * **Initial value**: `none`
     *
     * |   Chrome    | Firefox |   Safari    |  Edge  | IE  |
     * | :---------: | :-----: | :---------: | :----: | :-: |
     * | **1** _-x-_ | **53**  | **4** _-x-_ | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
     */
    "mask-image"?: Property.MaskImage;
    /**
     * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.
     *
     * **Syntax**: `<masking-mode>#`
     *
     * **Initial value**: `match-source`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **53**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
     */
    "mask-mode"?: Property.MaskMode;
    /**
     * The **`mask-origin`** CSS property sets the origin of a mask.
     *
     * **Syntax**: `<geometry-box>#`
     *
     * **Initial value**: `border-box`
     *
     * |   Chrome    | Firefox |   Safari    |     Edge     | IE  |
     * | :---------: | :-----: | :---------: | :----------: | :-: |
     * | **1** _-x-_ | **53**  | **4** _-x-_ | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
     */
    "mask-origin"?: Property.MaskOrigin;
    /**
     * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
     *
     * **Syntax**: `<position>#`
     *
     * **Initial value**: `center`
     *
     * |   Chrome    | Firefox |    Safari     |  Edge  | IE  |
     * | :---------: | :-----: | :-----------: | :----: | :-: |
     * | **1** _-x-_ | **53**  | **3.2** _-x-_ | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
     */
    "mask-position"?: Property.MaskPosition<TLength>;
    /**
     * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
     *
     * **Syntax**: `<repeat-style>#`
     *
     * **Initial value**: `no-repeat`
     *
     * |   Chrome    | Firefox |    Safari     |  Edge  | IE  |
     * | :---------: | :-----: | :-----------: | :----: | :-: |
     * | **1** _-x-_ | **53**  | **3.2** _-x-_ | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
     */
    "mask-repeat"?: Property.MaskRepeat;
    /**
     * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto`
     *
     * |   Chrome    | Firefox |   Safari    |  Edge  | IE  |
     * | :---------: | :-----: | :---------: | :----: | :-: |
     * | **4** _-x-_ | **53**  | **4** _-x-_ | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
     */
    "mask-size"?: Property.MaskSize<TLength>;
    /**
     * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.
     *
     * **Syntax**: `luminance | alpha`
     *
     * **Initial value**: `luminance`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **24** | **35**  | **6.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
     */
    "mask-type"?: Property.MaskType;
    /**
     * The `math-style` property indicates whether MathML equations should render with normal or compact height.
     *
     * **Syntax**: `normal | compact`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |   n/a   |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/math-style
     */
    "math-style"?: Property.MathStyle;
    /**
     * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.
     *
     * **Syntax**: `<'max-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
     */
    "max-block-size"?: Property.MaxBlockSize<TLength>;
    /**
     * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.
     *
     * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **18** |  **1**  | **1.3** | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-height
     */
    "max-height"?: Property.MaxHeight<TLength>;
    /**
     * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'max-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |   Safari   |  Edge  | IE  |
     * | :----: | :-----: | :--------: | :----: | :-: |
     * | **57** | **41**  |  **12.1**  | **79** | No  |
     * |        |         | 10.1 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
     */
    "max-inline-size"?: Property.MaxInlineSize<TLength>;
    /**
     * **Syntax**: `none | <integer>`
     *
     * **Initial value**: `none`
     */
    "max-lines"?: Property.MaxLines;
    /**
     * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.
     *
     * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/max-width
     */
    "max-width"?: Property.MaxWidth<TLength>;
    /**
     * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'min-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
     */
    "min-block-size"?: Property.MinBlockSize<TLength>;
    /**
     * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **3**  | **1.3** | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-height
     */
    "min-height"?: Property.MinHeight<TLength>;
    /**
     * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'min-width'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
     */
    "min-inline-size"?: Property.MinInlineSize<TLength>;
    /**
     * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **7** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/min-width
     */
    "min-width"?: Property.MinWidth<TLength>;
    /**
     * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
     *
     * **Syntax**: `<blend-mode>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **41** | **32**  | **8**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode
     */
    "mix-blend-mode"?: Property.MixBlendMode;
    /**
     * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **55**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-distance)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
     */
    "motion-distance"?: Property.OffsetDistance<TLength>;
    /**
     * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
     *
     * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
     *
     * **Initial value**: `none`
     *
     * |       Chrome       | Firefox | Safari |  Edge  | IE  |
     * | :----------------: | :-----: | :----: | :----: | :-: |
     * |       **55**       | **72**  |   No   | **79** | No  |
     * | 46 _(motion-path)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
     */
    "motion-path"?: Property.OffsetPath;
    /**
     * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
     *
     * **Syntax**: `[ auto | reverse ] || <angle>`
     *
     * **Initial value**: `auto`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **56**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-rotation)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
     */
    "motion-rotation"?: Property.OffsetRotate;
    /**
     * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
     *
     * **Syntax**: `fill | contain | cover | none | scale-down`
     *
     * **Initial value**: `fill`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **32** | **36**  | **10** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/object-fit
     */
    "object-fit"?: Property.ObjectFit;
    /**
     * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **32** | **36**  | **10** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/object-position
     */
    "object-position"?: Property.ObjectPosition<TLength>;
    /**
     * **Syntax**: `auto | <position>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **79** | **72**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
     */
    "offset-anchor"?: Property.OffsetAnchor<TLength>;
    /**
     * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **55**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-distance)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
     */
    "offset-distance"?: Property.OffsetDistance<TLength>;
    /**
     * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
     *
     * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
     *
     * **Initial value**: `none`
     *
     * |       Chrome       | Firefox | Safari |  Edge  | IE  |
     * | :----------------: | :-----: | :----: | :----: | :-: |
     * |       **55**       | **72**  |   No   | **79** | No  |
     * | 46 _(motion-path)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
     */
    "offset-path"?: Property.OffsetPath;
    /**
     * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
     *
     * **Syntax**: `[ auto | reverse ] || <angle>`
     *
     * **Initial value**: `auto`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **56**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-rotation)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
     */
    "offset-rotate"?: Property.OffsetRotate;
    /**
     * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
     *
     * **Syntax**: `[ auto | reverse ] || <angle>`
     *
     * **Initial value**: `auto`
     *
     * |         Chrome         | Firefox | Safari |  Edge  | IE  |
     * | :--------------------: | :-----: | :----: | :----: | :-: |
     * |         **56**         | **72**  |   No   | **79** | No  |
     * | 46 _(motion-rotation)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
     */
    "offset-rotation"?: Property.OffsetRotate;
    /**
     * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `1.0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **2**  | **12** | **9** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/opacity
     */
    opacity?: Property.Opacity;
    /**
     * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `0`
     *
     * |  Chrome  | Firefox | Safari  |  Edge  |    IE    |
     * | :------: | :-----: | :-----: | :----: | :------: |
     * |  **29**  | **20**  |  **9**  | **12** |  **11**  |
     * | 21 _-x-_ |         | 7 _-x-_ |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/order
     */
    order?: Property.Order;
    /**
     * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `2`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **25** |   No    | **1.3** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/orphans
     */
    orphans?: Property.Orphans;
    /**
     * The **`outline-color`** CSS property sets the color of an element's outline.
     *
     * **Syntax**: `<color> | invert`
     *
     * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
     */
    "outline-color"?: Property.OutlineColor;
    /**
     * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **1**  | **1.5** | **1.2** | **15** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
     */
    "outline-offset"?: Property.OutlineOffset<TLength>;
    /**
     * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `auto | <'border-style'>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
     */
    "outline-style"?: Property.OutlineStyle;
    /**
     * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
     */
    "outline-width"?: Property.OutlineWidth<TLength>;
    /**
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **56** | **66**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-anchor
     */
    "overflow-anchor"?: Property.OverflowAnchor;
    /**
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **69**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
     */
    "overflow-block"?: Property.OverflowBlock;
    /**
     * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.
     *
     * **Syntax**: `padding-box | content-box`
     *
     * **Initial value**: `padding-box`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **29**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box
     */
    "overflow-clip-box"?: Property.OverflowClipBox;
    /**
     * **Syntax**: `<visual-box> || <length [0,∞]>`
     *
     * **Initial value**: `0px`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **90** |   No    |   No   | **90** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin
     */
    "overflow-clip-margin"?: Property.OverflowClipMargin<TLength>;
    /**
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **69**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
     */
    "overflow-inline"?: Property.OverflowInline;
    /**
     * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
     *
     * **Syntax**: `normal | break-word | anywhere`
     *
     * **Initial value**: `normal`
     *
     * |     Chrome      |      Firefox      |     Safari      |       Edge       |          IE           |
     * | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
     * |     **23**      |      **49**       |     **6.1**     |      **18**      | **5.5** _(word-wrap)_ |
     * | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ |                       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
     */
    "overflow-wrap"?: Property.OverflowWrap;
    /**
     * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **3.5** | **3**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
     */
    "overflow-x"?: Property.OverflowX;
    /**
     * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  | **3.5** | **3**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
     */
    "overflow-y"?: Property.OverflowY;
    /**
     * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **77** | **73**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block
     */
    "overscroll-behavior-block"?: Property.OverscrollBehaviorBlock;
    /**
     * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **77** | **73**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline
     */
    "overscroll-behavior-inline"?: Property.OverscrollBehaviorInline;
    /**
     * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **59**  |   No   | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x
     */
    "overscroll-behavior-x"?: Property.OverscrollBehaviorX;
    /**
     * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
     *
     * **Syntax**: `contain | none | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **59**  |   No   | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y
     */
    "overscroll-behavior-y"?: Property.OverscrollBehaviorY;
    /**
     * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
     */
    "padding-block"?: Property.PaddingBlock<TLength>;
    /**
     * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
     */
    "padding-block-end"?: Property.PaddingBlockEnd<TLength>;
    /**
     * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
     */
    "padding-block-start"?: Property.PaddingBlockStart<TLength>;
    /**
     * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
     */
    "padding-bottom"?: Property.PaddingBottom<TLength>;
    /**
     * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
     */
    "padding-inline"?: Property.PaddingInline<TLength>;
    /**
     * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * |          Chrome           |        Firefox         |          Safari           |  Edge  | IE  |
     * | :-----------------------: | :--------------------: | :-----------------------: | :----: | :-: |
     * |          **69**           |         **41**         |         **12.1**          | **79** | No  |
     * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
     */
    "padding-inline-end"?: Property.PaddingInlineEnd<TLength>;
    /**
     * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     *
     * |           Chrome            |         Firefox          |           Safari            |  Edge  | IE  |
     * | :-------------------------: | :----------------------: | :-------------------------: | :----: | :-: |
     * |           **69**            |          **41**          |          **12.1**           | **79** | No  |
     * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
     */
    "padding-inline-start"?: Property.PaddingInlineStart<TLength>;
    /**
     * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
     */
    "padding-left"?: Property.PaddingLeft<TLength>;
    /**
     * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
     */
    "padding-right"?: Property.PaddingRight<TLength>;
    /**
     * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
     *
     * **Syntax**: `<length> | <percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
     */
    "padding-top"?: Property.PaddingTop<TLength>;
    /**
     * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.
     *
     * **Syntax**: `auto | always | avoid | left | right | recto | verso`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/page-break-after
     */
    "page-break-after"?: Property.PageBreakAfter;
    /**
     * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.
     *
     * **Syntax**: `auto | always | avoid | left | right | recto | verso`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **1**  | **1.2** | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/page-break-before
     */
    "page-break-before"?: Property.PageBreakBefore;
    /**
     * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.
     *
     * **Syntax**: `auto | avoid`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **19**  | **1.3** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/page-break-inside
     */
    "page-break-inside"?: Property.PageBreakInside;
    /**
     * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.
     *
     * **Syntax**: `normal | [ fill || stroke || markers ]`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **35** | **60**  | **8**  | **17** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/paint-order
     */
    "paint-order"?: Property.PaintOrder;
    /**
     * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
     *
     * **Syntax**: `none | <length>`
     *
     * **Initial value**: `none`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  |   IE   |
     * | :------: | :------: | :-----: | :----: | :----: |
     * |  **36**  |  **16**  |  **9**  | **12** | **10** |
     * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/perspective
     */
    perspective?: Property.Perspective<TLength>;
    /**
     * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  |   IE   |
     * | :------: | :------: | :-----: | :----: | :----: |
     * |  **36**  |  **16**  |  **9**  | **12** | **10** |
     * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
     */
    "perspective-origin"?: Property.PerspectiveOrigin<TLength>;
    /**
     * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.
     *
     * **Syntax**: `<'align-content'> <'justify-content'>?`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **9**  | **79** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **53**  | **11** | **79** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/place-content
     */
    "place-content"?: Property.PlaceContent;
    /**
     * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.
     *
     * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * | **1**  | **1.5** | **4**  | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/pointer-events
     */
    "pointer-events"?: Property.PointerEvents;
    /**
     * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.
     *
     * **Syntax**: `static | relative | absolute | sticky | fixed`
     *
     * **Initial value**: `static`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/position
     */
    position?: Property.Position;
    /**
     * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.
     *
     * **Syntax**: `none | auto | [ <string> <string> ]+`
     *
     * **Initial value**: depends on user agent
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **11** | **1.5** | **9**  | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/quotes
     */
    quotes?: Property.Quotes;
    /**
     * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
     *
     * **Syntax**: `none | both | horizontal | vertical | block | inline`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **1**  |  **4**  | **3**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/resize
     */
    resize?: Property.Resize;
    /**
     * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/right
     */
    right?: Property.Right<TLength>;
    /**
     * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.
     *
     * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **72**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/rotate
     */
    rotate?: Property.Rotate;
    /**
     * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **84** | **63**  |   No   | **84** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * |       Chrome        |       Firefox       |        Safari         |  Edge  | IE  |
     * | :-----------------: | :-----------------: | :-------------------: | :----: | :-: |
     * |       **66**        |       **61**        |       **12.1**        | **16** | No  |
     * | 57 _(grid-row-gap)_ | 52 _(grid-row-gap)_ | 10.1 _(grid-row-gap)_ |        |     |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/row-gap
     */
    "row-gap"?: Property.RowGap<TLength>;
    /**
     * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.
     *
     * **Syntax**: `start | center | space-between | space-around`
     *
     * **Initial value**: `space-around`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **38**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/ruby-align
     */
    "ruby-align"?: Property.RubyAlign;
    /**
     * **Syntax**: `separate | collapse | auto`
     *
     * **Initial value**: `separate`
     */
    "ruby-merge"?: Property.RubyMerge;
    /**
     * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
     *
     * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
     *
     * **Initial value**: `alternate`
     *
     * | Chrome  | Firefox |    Safari     | Edge  | IE  |
     * | :-----: | :-----: | :-----------: | :---: | :-: |
     * | **84**  | **38**  | **6.1** _-x-_ | 12-79 | No  |
     * | 1 _-x-_ |         |               |       |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/ruby-position
     */
    "ruby-position"?: Property.RubyPosition;
    /**
     * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
     *
     * **Syntax**: `none | <number>{1,3}`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **72**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scale
     */
    scale?: Property.Scale;
    /**
     * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
     *
     * **Syntax**: `auto | smooth`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **61** | **36**  |  n/a   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior
     */
    "scroll-behavior"?: Property.ScrollBehavior;
    /**
     * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
     *
     * **Syntax**: `<length>{1,4}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |            Safari             |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
     */
    "scroll-margin"?: Property.ScrollMargin<TLength>;
    /**
     * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
     *
     * **Syntax**: `<length>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
     */
    "scroll-margin-block"?: Property.ScrollMarginBlock<TLength>;
    /**
     * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
     */
    "scroll-margin-block-end"?: Property.ScrollMarginBlockEnd<TLength>;
    /**
     * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
     */
    "scroll-margin-block-start"?: Property.ScrollMarginBlockStart<TLength>;
    /**
     * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |                Safari                |  Edge  | IE  |
     * | :----: | :-----: | :----------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-bottom)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
     */
    "scroll-margin-bottom"?: Property.ScrollMarginBottom<TLength>;
    /**
     * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
     *
     * **Syntax**: `<length>{1,2}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **68**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
     */
    "scroll-margin-inline"?: Property.ScrollMarginInline<TLength>;
    /**
     * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
     */
    "scroll-margin-inline-end"?: Property.ScrollMarginInlineEnd<TLength>;
    /**
     * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
     */
    "scroll-margin-inline-start"?: Property.ScrollMarginInlineStart<TLength>;
    /**
     * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari               |  Edge  | IE  |
     * | :----: | :-----: | :--------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-left)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
     */
    "scroll-margin-left"?: Property.ScrollMarginLeft<TLength>;
    /**
     * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari                |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-right)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
     */
    "scroll-margin-right"?: Property.ScrollMarginRight<TLength>;
    /**
     * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |              Safari               |  Edge  | IE  |
     * | :----: | :-----: | :-------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-top)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
     */
    "scroll-margin-top"?: Property.ScrollMarginTop<TLength>;
    /**
     * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.
     *
     * **Syntax**: `[ auto | <length-percentage> ]{1,4}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
     */
    "scroll-padding"?: Property.ScrollPadding<TLength>;
    /**
     * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
     *
     * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
     */
    "scroll-padding-block"?: Property.ScrollPaddingBlock<TLength>;
    /**
     * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
     */
    "scroll-padding-block-end"?: Property.ScrollPaddingBlockEnd<TLength>;
    /**
     * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
     */
    "scroll-padding-block-start"?: Property.ScrollPaddingBlockStart<TLength>;
    /**
     * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
     */
    "scroll-padding-bottom"?: Property.ScrollPaddingBottom<TLength>;
    /**
     * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
     *
     * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
     */
    "scroll-padding-inline"?: Property.ScrollPaddingInline<TLength>;
    /**
     * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
     */
    "scroll-padding-inline-end"?: Property.ScrollPaddingInlineEnd<TLength>;
    /**
     * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
     */
    "scroll-padding-inline-start"?: Property.ScrollPaddingInlineStart<TLength>;
    /**
     * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
     */
    "scroll-padding-left"?: Property.ScrollPaddingLeft<TLength>;
    /**
     * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
     */
    "scroll-padding-right"?: Property.ScrollPaddingRight<TLength>;
    /**
     * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
     *
     * **Syntax**: `auto | <length-percentage>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
     */
    "scroll-padding-top"?: Property.ScrollPaddingTop<TLength>;
    /**
     * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.
     *
     * **Syntax**: `[ none | start | end | center ]{1,2}`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **69** | **68**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align
     */
    "scroll-snap-align"?: Property.ScrollSnapAlign;
    /**
     * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
     *
     * **Syntax**: `<length>{1,4}`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |            Safari             |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
     */
    "scroll-snap-margin"?: Property.ScrollMargin<TLength>;
    /**
     * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |                Safari                |  Edge  | IE  |
     * | :----: | :-----: | :----------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-bottom)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
     */
    "scroll-snap-margin-bottom"?: Property.ScrollMarginBottom<TLength>;
    /**
     * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari               |  Edge  | IE  |
     * | :----: | :-----: | :--------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-left)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
     */
    "scroll-snap-margin-left"?: Property.ScrollMarginLeft<TLength>;
    /**
     * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |               Safari                |  Edge  | IE  |
     * | :----: | :-----: | :---------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-right)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
     */
    "scroll-snap-margin-right"?: Property.ScrollMarginRight<TLength>;
    /**
     * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |              Safari               |  Edge  | IE  |
     * | :----: | :-----: | :-------------------------------: | :----: | :-: |
     * | **69** | **68**  | **11** _(scroll-snap-margin-top)_ | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
     */
    "scroll-snap-margin-top"?: Property.ScrollMarginTop<TLength>;
    /**
     * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to "pass over" possible snap positions.
     *
     * **Syntax**: `normal | always`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **75** |   No    |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
     */
    "scroll-snap-stop"?: Property.ScrollSnapStop;
    /**
     * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
     *
     * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |     Edge     |      IE      |
     * | :----: | :-----: | :-----: | :----------: | :----------: |
     * | **69** |  39-68  | **11**  | **12** _-x-_ | **10** _-x-_ |
     * |        |         | 9 _-x-_ |              |              |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
     */
    "scroll-snap-type"?: Property.ScrollSnapType;
    /**
     * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
     *
     * **Syntax**: `auto | dark | light | <color>{2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **64**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
     */
    "scrollbar-color"?: Property.ScrollbarColor;
    /**
     * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
     *
     * **Syntax**: `auto | [ stable | always ] && both? && force?`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |  n/a   |   No    |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
     */
    "scrollbar-gutter"?: Property.ScrollbarGutter;
    /**
     * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.
     *
     * **Syntax**: `auto | thin | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **64**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
     */
    "scrollbar-width"?: Property.ScrollbarWidth;
    /**
     * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `0.0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **37** | **62**  | **10.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold
     */
    "shape-image-threshold"?: Property.ShapeImageThreshold;
    /**
     * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **37** | **62**  | **10.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/shape-margin
     */
    "shape-margin"?: Property.ShapeMargin<TLength>;
    /**
     * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.
     *
     * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **37** | **62**  | **10.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside
     */
    "shape-outside"?: Property.ShapeOutside;
    /**
     * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
     *
     * **Syntax**: `<integer> | <length>`
     *
     * **Initial value**: `8`
     *
     * | Chrome |   Firefox   | Safari  |  Edge  | IE  |
     * | :----: | :---------: | :-----: | :----: | :-: |
     * | **21** | **4** _-x-_ | **6.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/tab-size
     */
    "tab-size"?: Property.TabSize<TLength>;
    /**
     * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.
     *
     * **Syntax**: `auto | fixed`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **14** |  **1**  | **1**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/table-layout
     */
    "table-layout"?: Property.TableLayout;
    /**
     * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.
     *
     * **Syntax**: `start | end | left | right | center | justify | match-parent`
     *
     * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-align
     */
    "text-align"?: Property.TextAlign;
    /**
     * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
     *
     * **Syntax**: `auto | start | end | left | right | center | justify`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **47** | **49**  |   No   | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last
     */
    "text-align-last"?: Property.TextAlignLast;
    /**
     * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
     *
     * **Syntax**: `none | all | [ digits <integer>? ]`
     *
     * **Initial value**: `none`
     *
     * |           Chrome           | Firefox |              Safari              | Edge  |                   IE                   |
     * | :------------------------: | :-----: | :------------------------------: | :---: | :------------------------------------: |
     * |           **48**           | **48**  | **5.1** _(-webkit-text-combine)_ | 15-79 | **11** _(-ms-text-combine-horizontal)_ |
     * | 9 _(-webkit-text-combine)_ |         |                                  |       |                                        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
     */
    "text-combine-upright"?: Property.TextCombineUpright;
    /**
     * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **36**  | **12.1** | **79** | No  |
     * |        |         | 8 _-x-_  |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
     */
    "text-decoration-color"?: Property.TextDecorationColor;
    /**
     * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
     *
     * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **36**  | **12.1** | **79** | No  |
     * |        |         | 8 _-x-_  |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
     */
    "text-decoration-line"?: Property.TextDecorationLine;
    /**
     * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
     *
     * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
     *
     * **Initial value**: `objects`
     *
     * | Chrome | Firefox |  Safari  | Edge | IE  |
     * | :----: | :-----: | :------: | :--: | :-: |
     * | 57-64  |   No    | **12.1** |  No  | No  |
     * |        |         | 8 _-x-_  |      |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
     */
    "text-decoration-skip"?: Property.TextDecorationSkip;
    /**
     * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.
     *
     * **Syntax**: `auto | all | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **64** | **70**  |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
     */
    "text-decoration-skip-ink"?: Property.TextDecorationSkipInk;
    /**
     * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
     *
     * **Syntax**: `solid | double | dotted | dashed | wavy`
     *
     * **Initial value**: `solid`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **36**  | **12.1** | **79** | No  |
     * |        |         | 8 _-x-_  |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
     */
    "text-decoration-style"?: Property.TextDecorationStyle;
    /**
     * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
     *
     * **Syntax**: `auto | from-font | <length> | <percentage> `
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **89** | **70**  | **12.1** | **89** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
     */
    "text-decoration-thickness"?: Property.TextDecorationThickness<TLength>;
    /**
     * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
     *
     * **Syntax**: `auto | from-font | <length> | <percentage> `
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  | Edge  | IE  |
     * | :----: | :-----: | :------: | :---: | :-: |
     * | 87-89  | **70**  | **12.1** | 87-89 | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
     */
    "text-decoration-width"?: Property.TextDecorationThickness<TLength>;
    /**
     * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
     */
    "text-emphasis-color"?: Property.TextEmphasisColor;
    /**
     * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
     *
     * **Syntax**: `[ over | under ] && [ right | left ]`
     *
     * **Initial value**: `over right`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
     */
    "text-emphasis-position"?: Property.TextEmphasisPosition;
    /**
     * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
     *
     * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
     *
     * **Initial value**: `none`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
     */
    "text-emphasis-style"?: Property.TextEmphasisStyle;
    /**
     * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.
     *
     * **Syntax**: `<length-percentage> && hanging? && each-line?`
     *
     * **Initial value**: `0`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-indent
     */
    "text-indent"?: Property.TextIndent<TLength>;
    /**
     * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
     *
     * **Syntax**: `auto | inter-character | inter-word | none`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE   |
     * | :----: | :-----: | :----: | :----: | :----: |
     * |  n/a   | **55**  |   No   | **12** | **11** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
     */
    "text-justify"?: Property.TextJustify;
    /**
     * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
     *
     * **Syntax**: `mixed | upright | sideways`
     *
     * **Initial value**: `mixed`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  | IE  |
     * | :------: | :-----: | :-------: | :----: | :-: |
     * |  **48**  | **41**  |  **14**   | **79** | No  |
     * | 11 _-x-_ |         | 5.1 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation
     */
    "text-orientation"?: Property.TextOrientation;
    /**
     * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
     *
     * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
     *
     * **Initial value**: `clip`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  |  **7**  | **1.3** | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow
     */
    "text-overflow"?: Property.TextOverflow;
    /**
     * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.
     *
     * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **4**  |  **1**  | **5**  | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering
     */
    "text-rendering"?: Property.TextRendering;
    /**
     * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
     *
     * **Syntax**: `none | <shadow-t>#`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE   |
     * | :----: | :-----: | :-----: | :----: | :----: |
     * | **2**  | **3.5** | **1.1** | **12** | **10** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow
     */
    "text-shadow"?: Property.TextShadow;
    /**
     * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
     *
     * **Syntax**: `none | auto | <percentage>`
     *
     * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **54** |   No    |   No   | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust
     */
    "text-size-adjust"?: Property.TextSizeAdjust;
    /**
     * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.
     *
     * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-transform
     */
    "text-transform"?: Property.TextTransform;
    /**
     * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.
     *
     * **Syntax**: `auto | <length> | <percentage> `
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **87** | **70**  | **12.1** | **87** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset
     */
    "text-underline-offset"?: Property.TextUnderlineOffset<TLength>;
    /**
     * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
     *
     * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox |  Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :------: | :----: | :---: |
     * | **33** | **74**  | **12.1** | **12** | **6** |
     * |        |         | 9 _-x-_  |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
     */
    "text-underline-position"?: Property.TextUnderlinePosition;
    /**
     * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
     *
     * **Syntax**: `<length> | <percentage> | auto`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/top
     */
    top?: Property.Top<TLength>;
    /**
     * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
     *
     * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |    IE    |
     * | :----: | :-----: | :----: | :----: | :------: |
     * | **36** | **52**  | **13** | **12** |  **11**  |
     * |        |         |        |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/touch-action
     */
    "touch-action"?: Property.TouchAction;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE    |
     * | :-----: | :-----: | :-------: | :----: | :-----: |
     * | **36**  | **16**  |   **9**   | **12** | **10**  |
     * | 1 _-x-_ |         | 3.1 _-x-_ |        | 9 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform
     */
    transform?: Property.Transform;
    /**
     * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.
     *
     * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`
     *
     * **Initial value**: `view-box`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **64** | **55**  | **11** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
     */
    "transform-box"?: Property.TransformBox;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     *
     * | Chrome  |  Firefox  | Safari  |  Edge  |   IE    |
     * | :-----: | :-------: | :-----: | :----: | :-----: |
     * | **36**  |  **16**   |  **9**  | **12** | **10**  |
     * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ |        | 9 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
     */
    "transform-origin"?: Property.TransformOrigin<TLength>;
    /**
     * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
     *
     * **Syntax**: `flat | preserve-3d`
     *
     * **Initial value**: `flat`
     *
     * |  Chrome  | Firefox  | Safari  |  Edge  | IE  |
     * | :------: | :------: | :-----: | :----: | :-: |
     * |  **36**  |  **16**  |  **9**  | **12** | No  |
     * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
     */
    "transform-style"?: Property.TransformStyle;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **26**  | **16**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
     */
    "transition-delay"?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
     */
    "transition-duration"?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
     */
    "transition-property"?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
     */
    "transition-timing-function"?: Property.TransitionTimingFunction;
    /**
     * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
     *
     * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`
     *
     * **Initial value**: `none`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * |   No   | **72**  |   No   |  No  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/translate
     */
    translate?: Property.Translate<TLength>;
    /**
     * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.
     *
     * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE    |
     * | :----: | :-----: | :-----: | :----: | :-----: |
     * | **2**  |  **1**  | **1.3** | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
     */
    "unicode-bidi"?: Property.UnicodeBidi;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     *
     * | Chrome  | Firefox |   Safari    |     Edge     |      IE      |
     * | :-----: | :-----: | :---------: | :----------: | :----------: |
     * | **54**  | **69**  | **3** _-x-_ | **12** _-x-_ | **10** _-x-_ |
     * | 1 _-x-_ | 1 _-x-_ |             |              |              |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/user-select
     */
    "user-select"?: Property.UserSelect;
    /**
     * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
     *
     * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`
     *
     * **Initial value**: `baseline`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
     */
    "vertical-align"?: Property.VerticalAlign<TLength>;
    /**
     * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.
     *
     * **Syntax**: `visible | hidden | collapse`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/visibility
     */
    visibility?: Property.Visibility;
    /**
     * The **`white-space`** CSS property sets how white space inside an element is handled.
     *
     * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/white-space
     */
    "white-space"?: Property.WhiteSpace;
    /**
     * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `2`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **25** |   No    | **1.3** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/widows
     */
    widows?: Property.Widows;
    /**
     * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.
     *
     * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/width
     */
    width?: Property.Width<TLength>;
    /**
     * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.
     *
     * **Syntax**: `auto | <animateable-feature>#`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **36** | **36**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/will-change
     */
    "will-change"?: Property.WillChange;
    /**
     * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
     *
     * **Syntax**: `normal | break-all | keep-all | break-word`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  | **15**  | **3**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/word-break
     */
    "word-break"?: Property.WordBreak;
    /**
     * The **`word-spacing`** CSS property sets the length of space between words and between tags.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **6** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing
     */
    "word-spacing"?: Property.WordSpacing<TLength>;
    /**
     * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
     *
     * **Syntax**: `normal | break-word`
     *
     * **Initial value**: `normal`
     */
    "word-wrap"?: Property.WordWrap;
    /**
     * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
     *
     * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
     *
     * **Initial value**: `horizontal-tb`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |  IE   |
     * | :-----: | :-----: | :-------: | :----: | :---: |
     * | **48**  | **41**  | **10.1**  | **12** | **9** |
     * | 8 _-x-_ |         | 5.1 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
     */
    "writing-mode"?: Property.WritingMode;
    /**
     * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
     *
     * **Syntax**: `auto | <integer>`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/z-index
     */
    "z-index"?: Property.ZIndex;
    /**
     * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.
     *
     * **Syntax**: `normal | reset | <number> | <percentage>`
     *
     * **Initial value**: `normal`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE    |
     * | :----: | :-----: | :-----: | :----: | :-----: |
     * | **1**  |   No    | **3.1** | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/zoom
     */
    zoom?: Property.Zoom;
}
export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.
     *
     * **Syntax**: `initial | inherit | unset | revert`
     *
     * **Initial value**: There is no practical initial value for it.
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **37** | **27**  | **9.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/all
     */
    all?: Property.All;
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **43**  | **16**  |  **9**  | **12** | **10** |
     * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/animation
     */
    animation?: Property.Animation<TTime>;
    /**
     * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
     *
     * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background
     */
    background?: Property.Background<TLength>;
    /**
     * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.
     *
     * **Syntax**: `<bg-position>#`
     *
     * **Initial value**: `0% 0%`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/background-position
     */
    "background-position"?: Property.BackgroundPosition<TLength>;
    /**
     * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border
     */
    border?: Property.Border<TLength>;
    /**
     * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block
     */
    "border-block"?: Property.BorderBlock<TLength>;
    /**
     * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
     */
    "border-block-end"?: Property.BorderBlockEnd<TLength>;
    /**
     * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
     */
    "border-block-start"?: Property.BorderBlockStart<TLength>;
    /**
     * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom
     */
    "border-bottom"?: Property.BorderBottom<TLength>;
    /**
     * The **`border-color`** shorthand CSS property sets the color of an element's border.
     *
     * **Syntax**: `<color>{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-color
     */
    "border-color"?: Property.BorderColor;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     *
     * | Chrome  |  Firefox  | Safari  |  Edge  |   IE   |
     * | :-----: | :-------: | :-----: | :----: | :----: |
     * | **16**  |  **15**   |  **6**  | **12** | **11** |
     * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-image
     */
    "border-image"?: Property.BorderImage;
    /**
     * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox | Safari | Edge | IE  |
     * | :----: | :-----: | :----: | :--: | :-: |
     * | **87** | **66**  |   No   | n/a  | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
     */
    "border-inline"?: Property.BorderInline<TLength>;
    /**
     * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
     */
    "border-inline-end"?: Property.BorderInlineEnd<TLength>;
    /**
     * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **69** | **41**  | **12.1** | **79** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
     */
    "border-inline-start"?: Property.BorderInlineStart<TLength>;
    /**
     * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-left
     */
    "border-left"?: Property.BorderLeft<TLength>;
    /**
     * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
     *
     * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |  IE   |
     * | :-----: | :-----: | :-----: | :----: | :---: |
     * |  **4**  |  **4**  |  **5**  | **12** | **9** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |       |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-radius
     */
    "border-radius"?: Property.BorderRadius<TLength>;
    /**
     * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |   IE    |
     * | :----: | :-----: | :----: | :----: | :-----: |
     * | **1**  |  **1**  | **1**  | **12** | **5.5** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-right
     */
    "border-right"?: Property.BorderRight<TLength>;
    /**
     * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.
     *
     * **Syntax**: `<line-style>{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-style
     */
    "border-style"?: Property.BorderStyle;
    /**
     * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.
     *
     * **Syntax**: `<line-width> || <line-style> || <color>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-top
     */
    "border-top"?: Property.BorderTop<TLength>;
    /**
     * The **`border-width`** shorthand CSS property sets the width of an element's border.
     *
     * **Syntax**: `<line-width>{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/border-width
     */
    "border-width"?: Property.BorderWidth<TLength>;
    /**
     * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
     *
     * | Chrome  | Firefox | Safari  |  Edge  |   IE   |
     * | :-----: | :-----: | :-----: | :----: | :----: |
     * | **50**  | **52**  |  **9**  | **12** | **10** |
     * | 1 _-x-_ |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/column-rule
     */
    "column-rule"?: Property.ColumnRule<TLength>;
    /**
     * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
     *
     * **Syntax**: `<'column-width'> || <'column-count'>`
     *
     * | Chrome | Firefox | Safari  |  Edge  |   IE   |
     * | :----: | :-----: | :-----: | :----: | :----: |
     * | **50** | **52**  |  **9**  | **12** | **10** |
     * |        |         | 3 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/columns
     */
    columns?: Property.Columns<TLength>;
    /**
     * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
     *
     * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |    IE    |
     * | :------: | :-----: | :-------: | :----: | :------: |
     * |  **29**  | **20**  |   **9**   | **12** |  **11**  |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        | 10 _-x-_ |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex
     */
    flex?: Property.Flex<TLength>;
    /**
     * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
     *
     * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
     *
     * |  Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :------: | :-----: | :-------: | :----: | :----: |
     * |  **29**  | **28**  |   **9**   | **12** | **11** |
     * | 21 _-x-_ |         | 6.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
     */
    "flex-flow"?: Property.FlexFlow;
    /**
     * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
     *
     * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/font
     */
    font?: Property.Font;
    /**
     * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
     *
     * **Syntax**: `<'row-gap'> <'column-gap'>?`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **84** | **63**  |   No   | **84** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * |     Chrome      |     Firefox     |      Safari       |  Edge  | IE  |
     * | :-------------: | :-------------: | :---------------: | :----: | :-: |
     * |     **66**      |     **61**      |      **12**       | **16** | No  |
     * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | 10.1 _(grid-gap)_ |        |     |
     *
     * ---
     *
     * _Supported in Multi-column Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **66** | **61**  |   No   | **16** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/gap
     */
    gap?: Property.Gap<TLength>;
    /**
     * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
     *
     * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid
     */
    grid?: Property.Grid;
    /**
     * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.
     *
     * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-area
     */
    "grid-area"?: Property.GridArea;
    /**
     * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
     *
     * **Syntax**: `<grid-line> [ / <grid-line> ]?`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-column
     */
    "grid-column"?: Property.GridColumn;
    /**
     * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
     *
     * **Syntax**: `<grid-line> [ / <grid-line> ]?`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-row
     */
    "grid-row"?: Property.GridRow;
    /**
     * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.
     *
     * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`
     *
     * | Chrome | Firefox |  Safari  |  Edge  | IE  |
     * | :----: | :-----: | :------: | :----: | :-: |
     * | **57** | **52**  | **10.1** | **16** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/grid-template
     */
    "grid-template"?: Property.GridTemplate;
    /**
     * **Syntax**: `none | <integer>`
     *
     * **Initial value**: `none`
     */
    "line-clamp"?: Property.LineClamp;
    /**
     * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.
     *
     * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/list-style
     */
    "list-style"?: Property.ListStyle;
    /**
     * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.
     *
     * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/margin
     */
    margin?: Property.Margin<TLength>;
    /**
     * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
     *
     * **Syntax**: `<mask-layer>#`
     *
     * | Chrome | Firefox | Safari  |  Edge  | IE  |
     * | :----: | :-----: | :-----: | :----: | :-: |
     * | **1**  |  **2**  | **3.2** | **12** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask
     */
    mask?: Property.Mask<TLength>;
    /**
     * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
     *
     * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
     *
     * |              Chrome              | Firefox |               Safari               |               Edge                | IE  |
     * | :------------------------------: | :-----: | :--------------------------------: | :-------------------------------: | :-: |
     * | **1** _(-webkit-mask-box-image)_ |   No    | **3.1** _(-webkit-mask-box-image)_ | **79** _(-webkit-mask-box-image)_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
     */
    "mask-border"?: Property.MaskBorder;
    /**
     * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
     *
     * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
     *
     * |    Chrome     | Firefox | Safari |  Edge  | IE  |
     * | :-----------: | :-----: | :----: | :----: | :-: |
     * |    **55**     | **72**  |   No   | **79** | No  |
     * | 46 _(motion)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset
     */
    motion?: Property.Offset<TLength>;
    /**
     * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
     *
     * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
     *
     * |    Chrome     | Firefox | Safari |  Edge  | IE  |
     * | :-----------: | :-----: | :----: | :----: | :-: |
     * |    **55**     | **72**  |   No   | **79** | No  |
     * | 46 _(motion)_ |         |        |        |     |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/offset
     */
    offset?: Property.Offset<TLength>;
    /**
     * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
     *
     * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
     *
     * | Chrome | Firefox | Safari  |  Edge  |  IE   |
     * | :----: | :-----: | :-----: | :----: | :---: |
     * | **1**  | **1.5** | **1.2** | **12** | **8** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/outline
     */
    outline?: Property.Outline<TLength>;
    /**
     * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.
     *
     * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`
     *
     * **Initial value**: `visible`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overflow
     */
    overflow?: Property.Overflow;
    /**
     * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.
     *
     * **Syntax**: `[ contain | none | auto ]{1,2}`
     *
     * **Initial value**: `auto`
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **63** | **59**  |   No   | **18** | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior
     */
    "overscroll-behavior"?: Property.OverscrollBehavior;
    /**
     * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.
     *
     * **Syntax**: `[ <length> | <percentage> ]{1,4}`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **4** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/padding
     */
    padding?: Property.Padding<TLength>;
    /**
     * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.
     *
     * **Syntax**: `<'align-items'> <'justify-items'>?`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/place-items
     */
    "place-items"?: Property.PlaceItems;
    /**
     * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.
     *
     * **Syntax**: `<'align-self'> <'justify-self'>?`
     *
     * ---
     *
     * _Supported in Flex Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * _Supported in Grid Layout_
     *
     * | Chrome | Firefox | Safari |  Edge  | IE  |
     * | :----: | :-----: | :----: | :----: | :-: |
     * | **59** | **45**  | **11** | **79** | No  |
     *
     * ---
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/place-self
     */
    "place-self"?: Property.PlaceSelf;
    /**
     * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.
     *
     * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`
     *
     * | Chrome | Firefox | Safari |  Edge  |  IE   |
     * | :----: | :-----: | :----: | :----: | :---: |
     * | **1**  |  **1**  | **1**  | **12** | **3** |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration
     */
    "text-decoration"?: Property.TextDecoration<TLength>;
    /**
     * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
     *
     * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
     *
     * |    Chrome    | Firefox | Safari  |     Edge     | IE  |
     * | :----------: | :-----: | :-----: | :----------: | :-: |
     * | **25** _-x-_ | **46**  | **6.1** | **79** _-x-_ | No  |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
     */
    "text-emphasis"?: Property.TextEmphasis;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     *
     * | Chrome  | Firefox |  Safari   |  Edge  |   IE   |
     * | :-----: | :-----: | :-------: | :----: | :----: |
     * | **26**  | **16**  |   **9**   | **12** | **10** |
     * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ |        |        |
     *
     * @see https://developer.mozilla.org/docs/Web/CSS/transition
     */
    transition?: Property.Transition<TTime>;
}
export interface StandardPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandPropertiesHyphen<TLength, TTime>, StandardShorthandPropertiesHyphen<TLength, TTime> {
}
export interface VendorLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-moz-animation-delay"?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     */
    "-moz-animation-direction"?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-moz-animation-duration"?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     */
    "-moz-animation-fill-mode"?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     */
    "-moz-animation-iteration-count"?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     */
    "-moz-animation-name"?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     */
    "-moz-animation-play-state"?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    "-moz-animation-timing-function"?: Property.AnimationTimingFunction;
    /**
     * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
     *
     * **Syntax**: `none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized`
     *
     * **Initial value**: `none` (but this value is overridden in the user agent CSS)
     */
    "-moz-appearance"?: Property.MozAppearance;
    /**
     * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
     *
     * **Syntax**: `visible | hidden`
     *
     * **Initial value**: `visible`
     */
    "-moz-backface-visibility"?: Property.BackfaceVisibility;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-bottom-colors`** CSS property sets a list of colors for the bottom border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    "-moz-border-bottom-colors"?: Property.MozBorderBottomColors;
    /**
     * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     */
    "-moz-border-end-color"?: Property.BorderInlineEndColor;
    /**
     * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     */
    "-moz-border-end-style"?: Property.BorderInlineEndStyle;
    /**
     * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-width'>`
     *
     * **Initial value**: `medium`
     */
    "-moz-border-end-width"?: Property.BorderInlineEndWidth<TLength>;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-left-colors`** CSS property sets a list of colors for the left border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    "-moz-border-left-colors"?: Property.MozBorderLeftColors;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-right-colors`** CSS property sets a list of colors for the right border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    "-moz-border-right-colors"?: Property.MozBorderRightColors;
    /**
     * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-color'>`
     *
     * **Initial value**: `currentcolor`
     */
    "-moz-border-start-color"?: Property.BorderInlineStartColor;
    /**
     * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'border-top-style'>`
     *
     * **Initial value**: `none`
     */
    "-moz-border-start-style"?: Property.BorderInlineStartStyle;
    /**
     * In Mozilla applications like Firefox, the **`-moz-border-top-colors`** CSS property sets a list of colors for the top border.
     *
     * **Syntax**: `<color>+ | none`
     *
     * **Initial value**: `none`
     */
    "-moz-border-top-colors"?: Property.MozBorderTopColors;
    /**
     * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
     *
     * **Syntax**: `content-box | border-box`
     *
     * **Initial value**: `content-box`
     */
    "-moz-box-sizing"?: Property.BoxSizing;
    /**
     * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
     *
     * **Syntax**: `<integer> | auto`
     *
     * **Initial value**: `auto`
     */
    "-moz-column-count"?: Property.ColumnCount;
    /**
     * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
     *
     * **Syntax**: `auto | balance | balance-all`
     *
     * **Initial value**: `balance`
     */
    "-moz-column-fill"?: Property.ColumnFill;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     */
    "-moz-column-gap"?: Property.ColumnGap<TLength>;
    /**
     * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-moz-column-rule-color"?: Property.ColumnRuleColor;
    /**
     * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     */
    "-moz-column-rule-style"?: Property.ColumnRuleStyle;
    /**
     * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     */
    "-moz-column-rule-width"?: Property.ColumnRuleWidth<TLength>;
    /**
     * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
     *
     * **Syntax**: `<length> | auto`
     *
     * **Initial value**: `auto`
     */
    "-moz-column-width"?: Property.ColumnWidth<TLength>;
    /**
     * The `**-moz-context-properties**` property can be used within privileged contexts in Firefox to share the values of specified properties of the element with a child SVG image.
     *
     * **Syntax**: `none | [ fill | fill-opacity | stroke | stroke-opacity ]#`
     *
     * **Initial value**: `none`
     */
    "-moz-context-properties"?: Property.MozContextProperties;
    /**
     * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
     *
     * **Syntax**: `normal | <feature-tag-value>#`
     *
     * **Initial value**: `normal`
     */
    "-moz-font-feature-settings"?: Property.FontFeatureSettings;
    /**
     * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
     *
     * **Syntax**: `normal | <string>`
     *
     * **Initial value**: `normal`
     */
    "-moz-font-language-override"?: Property.FontLanguageOverride;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     */
    "-moz-hyphens"?: Property.Hyphens;
    /**
     * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance.
     *
     * **Syntax**: `<shape> | auto`
     *
     * **Initial value**: `auto`
     */
    "-moz-image-region"?: Property.MozImageRegion;
    /**
     * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    "-moz-margin-end"?: Property.MarginInlineEnd<TLength>;
    /**
     * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    "-moz-margin-start"?: Property.MarginInlineStart<TLength>;
    /**
     * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied.
     *
     * **Syntax**: `inline | block | horizontal | vertical`
     *
     * **Initial value**: `inline`
     */
    "-moz-orient"?: Property.MozOrient;
    /**
     * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
     *
     * **Syntax**: `auto | never | always | <absolute-size> | <length>`
     *
     * **Initial value**: `auto`
     */
    "-moz-osx-font-smoothing"?: Property.FontSmooth<TLength>;
    /**
     * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    "-moz-padding-end"?: Property.PaddingInlineEnd<TLength>;
    /**
     * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    "-moz-padding-start"?: Property.PaddingInlineStart<TLength>;
    /**
     * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
     *
     * **Syntax**: `none | <length>`
     *
     * **Initial value**: `none`
     */
    "-moz-perspective"?: Property.Perspective<TLength>;
    /**
     * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     */
    "-moz-perspective-origin"?: Property.PerspectiveOrigin<TLength>;
    /**
     * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `<xul:stack>` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible.
     *
     * **Syntax**: `ignore | stretch-to-fit`
     *
     * **Initial value**: `stretch-to-fit`
     */
    "-moz-stack-sizing"?: Property.MozStackSizing;
    /**
     * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
     *
     * **Syntax**: `<integer> | <length>`
     *
     * **Initial value**: `8`
     */
    "-moz-tab-size"?: Property.TabSize<TLength>;
    /**
     * The **`-moz-text-blink`** non-standard Mozilla CSS extension specifies the blink mode.
     *
     * **Syntax**: `none | blink`
     *
     * **Initial value**: `none`
     */
    "-moz-text-blink"?: Property.MozTextBlink;
    /**
     * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
     *
     * **Syntax**: `none | auto | <percentage>`
     *
     * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
     */
    "-moz-text-size-adjust"?: Property.TextSizeAdjust;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     */
    "-moz-transform-origin"?: Property.TransformOrigin<TLength>;
    /**
     * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
     *
     * **Syntax**: `flat | preserve-3d`
     *
     * **Initial value**: `flat`
     */
    "-moz-transform-style"?: Property.TransformStyle;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-moz-transition-delay"?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-moz-transition-duration"?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     */
    "-moz-transition-property"?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    "-moz-transition-timing-function"?: Property.TransitionTimingFunction;
    /**
     * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
     *
     * **Syntax**: `ignore | normal | select-after | select-before | select-menu | select-same | select-all | none`
     *
     * **Initial value**: `none`
     */
    "-moz-user-focus"?: Property.MozUserFocus;
    /**
     * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user.
     *
     * **Syntax**: `read-only | read-write | write-only`
     *
     * **Initial value**: `read-only`
     */
    "-moz-user-modify"?: Property.MozUserModify;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     */
    "-moz-user-select"?: Property.UserSelect;
    /**
     * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X.
     *
     * **Syntax**: `drag | no-drag`
     *
     * **Initial value**: `drag`
     */
    "-moz-window-dragging"?: Property.MozWindowDragging;
    /**
     * The **`-moz-window-shadow`** CSS property specifies whether a window will have a shadow. It only works on Mac OS X.
     *
     * **Syntax**: `default | menu | tooltip | sheet | none`
     *
     * **Initial value**: `default`
     */
    "-moz-window-shadow"?: Property.MozWindowShadow;
    /**
     * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut.
     *
     * **Syntax**: `false | true`
     *
     * **Initial value**: `false`
     */
    "-ms-accelerator"?: Property.MsAccelerator;
    /**
     * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
     *
     * **Initial value**: `auto`
     */
    "-ms-align-self"?: Property.AlignSelf;
    /**
     * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation.
     *
     * **Syntax**: `tb | rl | bt | lr`
     *
     * **Initial value**: `tb`
     */
    "-ms-block-progression"?: Property.MsBlockProgression;
    /**
     * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation.
     *
     * **Syntax**: `none | chained`
     *
     * **Initial value**: `none`
     */
    "-ms-content-zoom-chaining"?: Property.MsContentZoomChaining;
    /**
     * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor.
     *
     * **Syntax**: `<percentage>`
     *
     * **Initial value**: `400%`
     */
    "-ms-content-zoom-limit-max"?: Property.MsContentZoomLimitMax;
    /**
     * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor.
     *
     * **Syntax**: `<percentage>`
     *
     * **Initial value**: `100%`
     */
    "-ms-content-zoom-limit-min"?: Property.MsContentZoomLimitMin;
    /**
     * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located.
     *
     * **Syntax**: `snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )`
     *
     * **Initial value**: `snapInterval(0%, 100%)`
     */
    "-ms-content-zoom-snap-points"?: Property.MsContentZoomSnapPoints;
    /**
     * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points.
     *
     * **Syntax**: `none | proximity | mandatory`
     *
     * **Initial value**: `none`
     */
    "-ms-content-zoom-snap-type"?: Property.MsContentZoomSnapType;
    /**
     * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled.
     *
     * **Syntax**: `none | zoom`
     *
     * **Initial value**: zoom for the top level element, none for all other elements
     */
    "-ms-content-zooming"?: Property.MsContentZooming;
    /**
     * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object.
     *
     * **Syntax**: `<string>`
     *
     * **Initial value**: "" (the empty string)
     */
    "-ms-filter"?: Property.MsFilter;
    /**
     * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
     *
     * **Syntax**: `row | row-reverse | column | column-reverse`
     *
     * **Initial value**: `row`
     */
    "-ms-flex-direction"?: Property.FlexDirection;
    /**
     * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     */
    "-ms-flex-positive"?: Property.FlexGrow;
    /**
     * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source.
     *
     * **Syntax**: `[ none | <custom-ident> ]#`
     *
     * **Initial value**: `none`
     */
    "-ms-flow-from"?: Property.MsFlowFrom;
    /**
     * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source.
     *
     * **Syntax**: `[ none | <custom-ident> ]#`
     *
     * **Initial value**: `none`
     */
    "-ms-flow-into"?: Property.MsFlowInto;
    /**
     * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list>`
     *
     * **Initial value**: `none`
     */
    "-ms-grid-columns"?: Property.MsGridColumns<TLength>;
    /**
     * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
     *
     * **Syntax**: `none | <track-list> | <auto-track-list>`
     *
     * **Initial value**: `none`
     */
    "-ms-grid-rows"?: Property.MsGridRows<TLength>;
    /**
     * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode.
     *
     * **Syntax**: `auto | none`
     *
     * **Initial value**: `auto`
     */
    "-ms-high-contrast-adjust"?: Property.MsHighContrastAdjust;
    /**
     * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated.
     *
     * **Syntax**: `auto | <integer>{1,3}`
     *
     * **Initial value**: `auto`
     */
    "-ms-hyphenate-limit-chars"?: Property.MsHyphenateLimitChars;
    /**
     * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word.
     *
     * **Syntax**: `no-limit | <integer>`
     *
     * **Initial value**: `no-limit`
     */
    "-ms-hyphenate-limit-lines"?: Property.MsHyphenateLimitLines;
    /**
     * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone.
     *
     * **Syntax**: `<percentage> | <length>`
     *
     * **Initial value**: `0`
     */
    "-ms-hyphenate-limit-zone"?: Property.MsHyphenateLimitZone<TLength>;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     */
    "-ms-hyphens"?: Property.Hyphens;
    /**
     * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11.
     *
     * **Syntax**: `auto | after`
     *
     * **Initial value**: `auto`
     */
    "-ms-ime-align"?: Property.MsImeAlign;
    /**
     * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
     *
     * **Initial value**: `auto`
     */
    "-ms-justify-self"?: Property.JustifySelf;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     */
    "-ms-line-break"?: Property.LineBreak;
    /**
     * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `0`
     */
    "-ms-order"?: Property.Order;
    /**
     * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows.
     *
     * **Syntax**: `auto | none | scrollbar | -ms-autohiding-scrollbar`
     *
     * **Initial value**: `auto`
     */
    "-ms-overflow-style"?: Property.MsOverflowStyle;
    /**
     * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     */
    "-ms-overflow-x"?: Property.OverflowX;
    /**
     * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
     *
     * **Syntax**: `visible | hidden | clip | scroll | auto`
     *
     * **Initial value**: `visible`
     */
    "-ms-overflow-y"?: Property.OverflowY;
    /**
     * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation.
     *
     * **Syntax**: `chained | none`
     *
     * **Initial value**: `chained`
     */
    "-ms-scroll-chaining"?: Property.MsScrollChaining;
    /**
     * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property.
     *
     * **Syntax**: `auto | <length>`
     *
     * **Initial value**: `auto`
     */
    "-ms-scroll-limit-x-max"?: Property.MsScrollLimitXMax<TLength>;
    /**
     * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    "-ms-scroll-limit-x-min"?: Property.MsScrollLimitXMin<TLength>;
    /**
     * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property.
     *
     * **Syntax**: `auto | <length>`
     *
     * **Initial value**: `auto`
     */
    "-ms-scroll-limit-y-max"?: Property.MsScrollLimitYMax<TLength>;
    /**
     * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    "-ms-scroll-limit-y-min"?: Property.MsScrollLimitYMin<TLength>;
    /**
     * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion.
     *
     * **Syntax**: `none | railed`
     *
     * **Initial value**: `railed`
     */
    "-ms-scroll-rails"?: Property.MsScrollRails;
    /**
     * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis.
     *
     * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
     *
     * **Initial value**: `snapInterval(0px, 100%)`
     */
    "-ms-scroll-snap-points-x"?: Property.MsScrollSnapPointsX;
    /**
     * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis.
     *
     * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
     *
     * **Initial value**: `snapInterval(0px, 100%)`
     */
    "-ms-scroll-snap-points-y"?: Property.MsScrollSnapPointsY;
    /**
     * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
     *
     * **Syntax**: `none | proximity | mandatory`
     *
     * **Initial value**: `none`
     */
    "-ms-scroll-snap-type"?: Property.MsScrollSnapType;
    /**
     * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element.
     *
     * **Syntax**: `none | vertical-to-horizontal`
     *
     * **Initial value**: `none`
     */
    "-ms-scroll-translation"?: Property.MsScrollTranslation;
    /**
     * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: depends on user agent
     */
    "-ms-scrollbar-3dlight-color"?: Property.MsScrollbar3dlightColor;
    /**
     * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ButtonText`
     */
    "-ms-scrollbar-arrow-color"?: Property.MsScrollbarArrowColor;
    /**
     * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: depends on user agent
     */
    "-ms-scrollbar-base-color"?: Property.MsScrollbarBaseColor;
    /**
     * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDDarkShadow`
     */
    "-ms-scrollbar-darkshadow-color"?: Property.MsScrollbarDarkshadowColor;
    /**
     * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDFace`
     */
    "-ms-scrollbar-face-color"?: Property.MsScrollbarFaceColor;
    /**
     * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDHighlight`
     */
    "-ms-scrollbar-highlight-color"?: Property.MsScrollbarHighlightColor;
    /**
     * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `ThreeDDarkShadow`
     */
    "-ms-scrollbar-shadow-color"?: Property.MsScrollbarShadowColor;
    /**
     * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text.
     *
     * **Syntax**: `none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space`
     *
     * **Initial value**: `none`
     */
    "-ms-text-autospace"?: Property.MsTextAutospace;
    /**
     * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
     *
     * **Syntax**: `none | all | [ digits <integer>? ]`
     *
     * **Initial value**: `none`
     */
    "-ms-text-combine-horizontal"?: Property.TextCombineUpright;
    /**
     * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
     *
     * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
     *
     * **Initial value**: `clip`
     */
    "-ms-text-overflow"?: Property.TextOverflow;
    /**
     * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
     *
     * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
     *
     * **Initial value**: `auto`
     */
    "-ms-touch-action"?: Property.TouchAction;
    /**
     * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection.
     *
     * **Syntax**: `grippers | none`
     *
     * **Initial value**: `grippers`
     */
    "-ms-touch-select"?: Property.MsTouchSelect;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     */
    "-ms-transform"?: Property.Transform;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     */
    "-ms-transform-origin"?: Property.TransformOrigin<TLength>;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-ms-transition-delay"?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-ms-transition-duration"?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     */
    "-ms-transition-property"?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    "-ms-transition-timing-function"?: Property.TransitionTimingFunction;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `none | element | text`
     *
     * **Initial value**: `text`
     */
    "-ms-user-select"?: Property.MsUserSelect;
    /**
     * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
     *
     * **Syntax**: `normal | break-all | keep-all | break-word`
     *
     * **Initial value**: `normal`
     */
    "-ms-word-break"?: Property.WordBreak;
    /**
     * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements.
     *
     * **Syntax**: `auto | both | start | end | maximum | clear`
     *
     * **Initial value**: `auto`
     */
    "-ms-wrap-flow"?: Property.MsWrapFlow;
    /**
     * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    "-ms-wrap-margin"?: Property.MsWrapMargin<TLength>;
    /**
     * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element.
     *
     * **Syntax**: `wrap | none`
     *
     * **Initial value**: `wrap`
     */
    "-ms-wrap-through"?: Property.MsWrapThrough;
    /**
     * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
     *
     * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
     *
     * **Initial value**: `horizontal-tb`
     */
    "-ms-writing-mode"?: Property.WritingMode;
    /**
     * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
     *
     * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
     *
     * **Initial value**: `normal`
     */
    "-webkit-align-content"?: Property.AlignContent;
    /**
     * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
     *
     * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
     *
     * **Initial value**: `normal`
     */
    "-webkit-align-items"?: Property.AlignItems;
    /**
     * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
     *
     * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
     *
     * **Initial value**: `auto`
     */
    "-webkit-align-self"?: Property.AlignSelf;
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-webkit-animation-delay"?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     */
    "-webkit-animation-direction"?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-webkit-animation-duration"?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     */
    "-webkit-animation-fill-mode"?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     */
    "-webkit-animation-iteration-count"?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     */
    "-webkit-animation-name"?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     */
    "-webkit-animation-play-state"?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    "-webkit-animation-timing-function"?: Property.AnimationTimingFunction;
    /**
     * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
     *
     * **Syntax**: `none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button`
     *
     * **Initial value**: `none` (but this value is overridden in the user agent CSS)
     */
    "-webkit-appearance"?: Property.WebkitAppearance;
    /**
     * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     */
    "-webkit-backdrop-filter"?: Property.BackdropFilter;
    /**
     * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
     *
     * **Syntax**: `visible | hidden`
     *
     * **Initial value**: `visible`
     */
    "-webkit-backface-visibility"?: Property.BackfaceVisibility;
    /**
     * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `border-box`
     */
    "-webkit-background-clip"?: Property.BackgroundClip;
    /**
     * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `padding-box`
     */
    "-webkit-background-origin"?: Property.BackgroundOrigin;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     */
    "-webkit-background-size"?: Property.BackgroundSize<TLength>;
    /**
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-webkit-border-before-color"?: Property.WebkitBorderBeforeColor;
    /**
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     */
    "-webkit-border-before-style"?: Property.WebkitBorderBeforeStyle;
    /**
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     */
    "-webkit-border-before-width"?: Property.WebkitBorderBeforeWidth<TLength>;
    /**
     * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    "-webkit-border-bottom-left-radius"?: Property.BorderBottomLeftRadius<TLength>;
    /**
     * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    "-webkit-border-bottom-right-radius"?: Property.BorderBottomRightRadius<TLength>;
    /**
     * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
     *
     * **Syntax**: `<number-percentage>{1,4} && fill?`
     *
     * **Initial value**: `100%`
     */
    "-webkit-border-image-slice"?: Property.BorderImageSlice;
    /**
     * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    "-webkit-border-top-left-radius"?: Property.BorderTopLeftRadius<TLength>;
    /**
     * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     */
    "-webkit-border-top-right-radius"?: Property.BorderTopRightRadius<TLength>;
    /**
     * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
     *
     * **Syntax**: `slice | clone`
     *
     * **Initial value**: `slice`
     */
    "-webkit-box-decoration-break"?: Property.BoxDecorationBreak;
    /**
     * The **`-webkit-box-reflect`** CSS property lets you reflect the content of an element in one specific direction.
     *
     * **Syntax**: `[ above | below | right | left ]? <length>? <image>?`
     *
     * **Initial value**: `none`
     */
    "-webkit-box-reflect"?: Property.WebkitBoxReflect<TLength>;
    /**
     * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
     *
     * **Syntax**: `none | <shadow>#`
     *
     * **Initial value**: `none`
     */
    "-webkit-box-shadow"?: Property.BoxShadow;
    /**
     * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
     *
     * **Syntax**: `content-box | border-box`
     *
     * **Initial value**: `content-box`
     */
    "-webkit-box-sizing"?: Property.BoxSizing;
    /**
     * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
     *
     * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
     *
     * **Initial value**: `none`
     */
    "-webkit-clip-path"?: Property.ClipPath;
    /**
     * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
     *
     * **Syntax**: `<integer> | auto`
     *
     * **Initial value**: `auto`
     */
    "-webkit-column-count"?: Property.ColumnCount;
    /**
     * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
     *
     * **Syntax**: `auto | balance | balance-all`
     *
     * **Initial value**: `balance`
     */
    "-webkit-column-fill"?: Property.ColumnFill;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `normal | <length-percentage>`
     *
     * **Initial value**: `normal`
     */
    "-webkit-column-gap"?: Property.ColumnGap<TLength>;
    /**
     * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-webkit-column-rule-color"?: Property.ColumnRuleColor;
    /**
     * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-style'>`
     *
     * **Initial value**: `none`
     */
    "-webkit-column-rule-style"?: Property.ColumnRuleStyle;
    /**
     * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'border-width'>`
     *
     * **Initial value**: `medium`
     */
    "-webkit-column-rule-width"?: Property.ColumnRuleWidth<TLength>;
    /**
     * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
     *
     * **Syntax**: `none | all`
     *
     * **Initial value**: `none`
     */
    "-webkit-column-span"?: Property.ColumnSpan;
    /**
     * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
     *
     * **Syntax**: `<length> | auto`
     *
     * **Initial value**: `auto`
     */
    "-webkit-column-width"?: Property.ColumnWidth<TLength>;
    /**
     * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
     *
     * **Syntax**: `none | <filter-function-list>`
     *
     * **Initial value**: `none`
     */
    "-webkit-filter"?: Property.Filter;
    /**
     * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
     *
     * **Syntax**: `content | <'width'>`
     *
     * **Initial value**: `auto`
     */
    "-webkit-flex-basis"?: Property.FlexBasis<TLength>;
    /**
     * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
     *
     * **Syntax**: `row | row-reverse | column | column-reverse`
     *
     * **Initial value**: `row`
     */
    "-webkit-flex-direction"?: Property.FlexDirection;
    /**
     * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     */
    "-webkit-flex-grow"?: Property.FlexGrow;
    /**
     * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `1`
     */
    "-webkit-flex-shrink"?: Property.FlexShrink;
    /**
     * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
     *
     * **Syntax**: `nowrap | wrap | wrap-reverse`
     *
     * **Initial value**: `nowrap`
     */
    "-webkit-flex-wrap"?: Property.FlexWrap;
    /**
     * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
     *
     * **Syntax**: `normal | <feature-tag-value>#`
     *
     * **Initial value**: `normal`
     */
    "-webkit-font-feature-settings"?: Property.FontFeatureSettings;
    /**
     * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
     *
     * **Syntax**: `auto | normal | none`
     *
     * **Initial value**: `auto`
     */
    "-webkit-font-kerning"?: Property.FontKerning;
    /**
     * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
     *
     * **Syntax**: `auto | never | always | <absolute-size> | <length>`
     *
     * **Initial value**: `auto`
     */
    "-webkit-font-smoothing"?: Property.FontSmooth<TLength>;
    /**
     * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
     *
     * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
     *
     * **Initial value**: `normal`
     */
    "-webkit-font-variant-ligatures"?: Property.FontVariantLigatures;
    /**
     * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
     *
     * **Syntax**: `none | manual | auto`
     *
     * **Initial value**: `manual`
     */
    "-webkit-hyphens"?: Property.Hyphens;
    /**
     * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
     *
     * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
     *
     * **Initial value**: `normal`
     */
    "-webkit-justify-content"?: Property.JustifyContent;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     */
    "-webkit-line-break"?: Property.LineBreak;
    /**
     * The **`-webkit-line-clamp`** CSS property allows limiting of the contents of a block container to the specified number of lines.
     *
     * **Syntax**: `none | <integer>`
     *
     * **Initial value**: `none`
     */
    "-webkit-line-clamp"?: Property.WebkitLineClamp;
    /**
     * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    "-webkit-margin-end"?: Property.MarginInlineEnd<TLength>;
    /**
     * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'margin-left'>`
     *
     * **Initial value**: `0`
     */
    "-webkit-margin-start"?: Property.MarginInlineStart<TLength>;
    /**
     * If a `-webkit-mask-image` is specified, `-webkit-mask-attachment` determines whether the mask image's position is fixed within the viewport, or scrolls along with its containing block.
     *
     * **Syntax**: `<attachment>#`
     *
     * **Initial value**: `scroll`
     */
    "-webkit-mask-attachment"?: Property.WebkitMaskAttachment;
    /**
     * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
     *
     * **Syntax**: `[ <length> | <number> ]{1,4}`
     *
     * **Initial value**: `0`
     */
    "-webkit-mask-box-image-outset"?: Property.MaskBorderOutset<TLength>;
    /**
     * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
     *
     * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
     *
     * **Initial value**: `stretch`
     */
    "-webkit-mask-box-image-repeat"?: Property.MaskBorderRepeat;
    /**
     * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
     *
     * **Syntax**: `<number-percentage>{1,4} fill?`
     *
     * **Initial value**: `0`
     */
    "-webkit-mask-box-image-slice"?: Property.MaskBorderSlice;
    /**
     * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
     *
     * **Syntax**: `none | <image>`
     *
     * **Initial value**: `none`
     */
    "-webkit-mask-box-image-source"?: Property.MaskBorderSource;
    /**
     * The **`mask-border-width`** CSS property sets the width of an element's mask border.
     *
     * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
     *
     * **Initial value**: `auto`
     */
    "-webkit-mask-box-image-width"?: Property.MaskBorderWidth<TLength>;
    /**
     * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
     *
     * **Syntax**: `[ <box> | border | padding | content | text ]#`
     *
     * **Initial value**: `border`
     */
    "-webkit-mask-clip"?: Property.WebkitMaskClip;
    /**
     * The **`-webkit-mask-composite`** property specifies the manner in which multiple mask images applied to the same element are composited with one another. Mask images are composited in the opposite order that they are declared with the `-webkit-mask-image` property.
     *
     * **Syntax**: `<composite-style>#`
     *
     * **Initial value**: `source-over`
     */
    "-webkit-mask-composite"?: Property.WebkitMaskComposite;
    /**
     * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
     *
     * **Syntax**: `<mask-reference>#`
     *
     * **Initial value**: `none`
     */
    "-webkit-mask-image"?: Property.WebkitMaskImage;
    /**
     * The **`mask-origin`** CSS property sets the origin of a mask.
     *
     * **Syntax**: `[ <box> | border | padding | content ]#`
     *
     * **Initial value**: `padding`
     */
    "-webkit-mask-origin"?: Property.WebkitMaskOrigin;
    /**
     * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
     *
     * **Syntax**: `<position>#`
     *
     * **Initial value**: `0% 0%`
     */
    "-webkit-mask-position"?: Property.WebkitMaskPosition<TLength>;
    /**
     * The `-webkit-mask-position-x` CSS property sets the initial horizontal position of a mask image.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right ]#`
     *
     * **Initial value**: `0%`
     */
    "-webkit-mask-position-x"?: Property.WebkitMaskPositionX<TLength>;
    /**
     * The `-webkit-mask-position-y` CSS property sets the initial vertical position of a mask image.
     *
     * **Syntax**: `[ <length-percentage> | top | center | bottom ]#`
     *
     * **Initial value**: `0%`
     */
    "-webkit-mask-position-y"?: Property.WebkitMaskPositionY<TLength>;
    /**
     * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
     *
     * **Syntax**: `<repeat-style>#`
     *
     * **Initial value**: `repeat`
     */
    "-webkit-mask-repeat"?: Property.WebkitMaskRepeat;
    /**
     * The `-webkit-mask-repeat-x` property specifies whether and how a mask image is repeated (tiled) horizontally.
     *
     * **Syntax**: `repeat | no-repeat | space | round`
     *
     * **Initial value**: `repeat`
     */
    "-webkit-mask-repeat-x"?: Property.WebkitMaskRepeatX;
    /**
     * The `-webkit-mask-repeat-y` property sets whether and how a mask image is repeated (tiled) vertically.
     *
     * **Syntax**: `repeat | no-repeat | space | round`
     *
     * **Initial value**: `repeat`
     */
    "-webkit-mask-repeat-y"?: Property.WebkitMaskRepeatY;
    /**
     * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     */
    "-webkit-mask-size"?: Property.WebkitMaskSize<TLength>;
    /**
     * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
     *
     * **Syntax**: `<'max-width'>`
     *
     * **Initial value**: `0`
     */
    "-webkit-max-inline-size"?: Property.MaxInlineSize<TLength>;
    /**
     * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `0`
     */
    "-webkit-order"?: Property.Order;
    /**
     * The `-webkit-overflow-scrolling` CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
     *
     * **Syntax**: `auto | touch`
     *
     * **Initial value**: `auto`
     */
    "-webkit-overflow-scrolling"?: Property.WebkitOverflowScrolling;
    /**
     * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    "-webkit-padding-end"?: Property.PaddingInlineEnd<TLength>;
    /**
     * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
     *
     * **Syntax**: `<'padding-left'>`
     *
     * **Initial value**: `0`
     */
    "-webkit-padding-start"?: Property.PaddingInlineStart<TLength>;
    /**
     * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
     *
     * **Syntax**: `none | <length>`
     *
     * **Initial value**: `none`
     */
    "-webkit-perspective"?: Property.Perspective<TLength>;
    /**
     * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     */
    "-webkit-perspective-origin"?: Property.PerspectiveOrigin<TLength>;
    /**
     * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
     *
     * **Syntax**: `economy | exact`
     *
     * **Initial value**: `economy`
     */
    "-webkit-print-color-adjust"?: Property.ColorAdjust;
    /**
     * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
     *
     * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
     *
     * **Initial value**: `alternate`
     */
    "-webkit-ruby-position"?: Property.RubyPosition;
    /**
     * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
     *
     * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
     *
     * **Initial value**: `none`
     */
    "-webkit-scroll-snap-type"?: Property.ScrollSnapType;
    /**
     * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     */
    "-webkit-shape-margin"?: Property.ShapeMargin<TLength>;
    /**
     * **`-webkit-tap-highlight-color`** is a non-standard CSS property that sets the color of the highlight that appears over a link while it's being tapped. The highlighting indicates to the user that their tap is being successfully recognized, and indicates which element they're tapping on.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `black`
     */
    "-webkit-tap-highlight-color"?: Property.WebkitTapHighlightColor;
    /**
     * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
     *
     * **Syntax**: `none | all | [ digits <integer>? ]`
     *
     * **Initial value**: `none`
     */
    "-webkit-text-combine"?: Property.TextCombineUpright;
    /**
     * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-webkit-text-decoration-color"?: Property.TextDecorationColor;
    /**
     * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
     *
     * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
     *
     * **Initial value**: `none`
     */
    "-webkit-text-decoration-line"?: Property.TextDecorationLine;
    /**
     * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
     *
     * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
     *
     * **Initial value**: `objects`
     */
    "-webkit-text-decoration-skip"?: Property.TextDecorationSkip;
    /**
     * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
     *
     * **Syntax**: `solid | double | dotted | dashed | wavy`
     *
     * **Initial value**: `solid`
     */
    "-webkit-text-decoration-style"?: Property.TextDecorationStyle;
    /**
     * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-webkit-text-emphasis-color"?: Property.TextEmphasisColor;
    /**
     * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
     *
     * **Syntax**: `[ over | under ] && [ right | left ]`
     *
     * **Initial value**: `over right`
     */
    "-webkit-text-emphasis-position"?: Property.TextEmphasisPosition;
    /**
     * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
     *
     * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
     *
     * **Initial value**: `none`
     */
    "-webkit-text-emphasis-style"?: Property.TextEmphasisStyle;
    /**
     * The **`-webkit-text-fill-color`** CSS property specifies the fill color of characters of text. If this property is not set, the value of the `color` property is used.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-webkit-text-fill-color"?: Property.WebkitTextFillColor;
    /**
     * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
     *
     * **Syntax**: `mixed | upright | sideways`
     *
     * **Initial value**: `mixed`
     */
    "-webkit-text-orientation"?: Property.TextOrientation;
    /**
     * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
     *
     * **Syntax**: `none | auto | <percentage>`
     *
     * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
     */
    "-webkit-text-size-adjust"?: Property.TextSizeAdjust;
    /**
     * The **`-webkit-text-stroke-color`** CSS property specifies the stroke color of characters of text. If this property is not set, the value of the `color` property is used.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     */
    "-webkit-text-stroke-color"?: Property.WebkitTextStrokeColor;
    /**
     * The **`-webkit-text-stroke-width`** CSS property specifies the width of the stroke for text.
     *
     * **Syntax**: `<length>`
     *
     * **Initial value**: `0`
     */
    "-webkit-text-stroke-width"?: Property.WebkitTextStrokeWidth<TLength>;
    /**
     * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
     *
     * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
     *
     * **Initial value**: `auto`
     */
    "-webkit-text-underline-position"?: Property.TextUnderlinePosition;
    /**
     * The `-webkit-touch-callout` CSS property controls the display of the default callout shown when you touch and hold a touch target.
     *
     * **Syntax**: `default | none`
     *
     * **Initial value**: `default`
     */
    "-webkit-touch-callout"?: Property.WebkitTouchCallout;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     */
    "-webkit-transform"?: Property.Transform;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     */
    "-webkit-transform-origin"?: Property.TransformOrigin<TLength>;
    /**
     * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
     *
     * **Syntax**: `flat | preserve-3d`
     *
     * **Initial value**: `flat`
     */
    "-webkit-transform-style"?: Property.TransformStyle;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-webkit-transition-delay"?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     */
    "-webkit-transition-duration"?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     */
    "-webkit-transition-property"?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     */
    "-webkit-transition-timing-function"?: Property.TransitionTimingFunction;
    /**
     * **Syntax**: `read-only | read-write | read-write-plaintext-only`
     *
     * **Initial value**: `read-only`
     */
    "-webkit-user-modify"?: Property.WebkitUserModify;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     */
    "-webkit-user-select"?: Property.UserSelect;
    /**
     * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
     *
     * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
     *
     * **Initial value**: `horizontal-tb`
     */
    "-webkit-writing-mode"?: Property.WritingMode;
}
export interface VendorShorthandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     */
    "-moz-animation"?: Property.Animation<TTime>;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     */
    "-moz-border-image"?: Property.BorderImage;
    /**
     * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
     */
    "-moz-column-rule"?: Property.ColumnRule<TLength>;
    /**
     * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
     *
     * **Syntax**: `<'column-width'> || <'column-count'>`
     */
    "-moz-columns"?: Property.Columns<TLength>;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     */
    "-moz-transition"?: Property.Transition<TTime>;
    /**
     * The **`-ms-content-zoom-limit`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-limit-min` and `-ms-content-zoom-limit-max` properties.
     *
     * **Syntax**: `<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>`
     */
    "-ms-content-zoom-limit"?: Property.MsContentZoomLimit;
    /**
     * The **`-ms-content-zoom-snap`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-snap-type` and `-ms-content-zoom-snap-points` properties.
     *
     * **Syntax**: `<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>`
     */
    "-ms-content-zoom-snap"?: Property.MsContentZoomSnap;
    /**
     * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
     *
     * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
     */
    "-ms-flex"?: Property.Flex<TLength>;
    /**
     * The **\-ms-scroll-limit** CSS property is a Microsoft extension that specifies values for the `-ms-scroll-limit-x-min`, `-ms-scroll-limit-y-min`, `-ms-scroll-limit-x-max`, and `-ms-scroll-limit-y-max` properties.
     *
     * **Syntax**: `<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>`
     */
    "-ms-scroll-limit"?: Property.MsScrollLimit;
    /**
     * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-x` properties.
     *
     * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>`
     */
    "-ms-scroll-snap-x"?: Property.MsScrollSnapX;
    /**
     * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-y` properties.
     *
     * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>`
     */
    "-ms-scroll-snap-y"?: Property.MsScrollSnapY;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     */
    "-ms-transition"?: Property.Transition<TTime>;
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     */
    "-webkit-animation"?: Property.Animation<TTime>;
    /**
     * The **`-webkit-border-before`** CSS property is a shorthand property for setting the individual logical block start border property values in a single place in the style sheet.
     *
     * **Syntax**: `<'border-width'> || <'border-style'> || <color>`
     */
    "-webkit-border-before"?: Property.WebkitBorderBefore<TLength>;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     */
    "-webkit-border-image"?: Property.BorderImage;
    /**
     * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
     *
     * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
     */
    "-webkit-border-radius"?: Property.BorderRadius<TLength>;
    /**
     * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
     *
     * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
     */
    "-webkit-column-rule"?: Property.ColumnRule<TLength>;
    /**
     * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
     *
     * **Syntax**: `<'column-width'> || <'column-count'>`
     */
    "-webkit-columns"?: Property.Columns<TLength>;
    /**
     * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
     *
     * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
     */
    "-webkit-flex"?: Property.Flex<TLength>;
    /**
     * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
     *
     * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
     */
    "-webkit-flex-flow"?: Property.FlexFlow;
    /**
     * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
     *
     * **Syntax**: `[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#`
     */
    "-webkit-mask"?: Property.WebkitMask<TLength>;
    /**
     * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
     *
     * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
     */
    "-webkit-mask-box-image"?: Property.MaskBorder;
    /**
     * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
     *
     * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
     */
    "-webkit-text-emphasis"?: Property.TextEmphasis;
    /**
     * The **`-webkit-text-stroke`** CSS property specifies the width and color of strokes for text characters. This is a shorthand property for the longhand properties `-webkit-text-stroke-width` and `-webkit-text-stroke-color`.
     *
     * **Syntax**: `<length> || <color>`
     */
    "-webkit-text-stroke"?: Property.WebkitTextStroke<TLength>;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     */
    "-webkit-transition"?: Property.Transition<TTime>;
}
export interface VendorPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandPropertiesHyphen<TLength, TTime>, VendorShorthandPropertiesHyphen<TLength, TTime> {
}
export interface ObsoletePropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
    /**
     * In combination with `elevation`, the **`azimuth`** CSS property enables different audio sources to be positioned spatially for aural presentation. This is important in that it provides a natural way to tell several voices apart, as each can be positioned to originate at a different location on the sound stage. Stereo output produce a lateral sound stage, while binaural headphones and multi-speaker setups allow for a fully three-dimensional stage.
     *
     * **Syntax**: `<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards`
     *
     * **Initial value**: `center`
     *
     * @deprecated
     */
    azimuth?: Property.Azimuth;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    "box-align"?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    "box-direction"?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "box-flex"?: Property.BoxFlex;
    /**
     * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "box-flex-group"?: Property.BoxFlexGroup;
    /**
     * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
     *
     * **Syntax**: `single | multiple`
     *
     * **Initial value**: `single`
     *
     * @deprecated
     */
    "box-lines"?: Property.BoxLines;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "box-ordinal-group"?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    "box-orient"?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    "box-pack"?: Property.BoxPack;
    /**
     * The **`clip`** CSS property defines a visible portion of an element. The `clip` property applies only to absolutely positioned elements — that is, elements with `position:absolute` or `position:fixed`.
     *
     * **Syntax**: `<shape> | auto`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    clip?: Property.Clip;
    /**
     * The **`font-variant-alternates`** CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in `@font-feature-values`.
     *
     * **Syntax**: `normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    "font-variant-alternates"?: Property.FontVariantAlternates;
    /**
     * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "grid-column-gap"?: Property.GridColumnGap<TLength>;
    /**
     * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
     *
     * **Syntax**: `<'grid-row-gap'> <'grid-column-gap'>?`
     *
     * @deprecated
     */
    "grid-gap"?: Property.GridGap<TLength>;
    /**
     * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
     *
     * **Syntax**: `<length-percentage>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "grid-row-gap"?: Property.GridRowGap<TLength>;
    /**
     * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
     *
     * **Syntax**: `auto | normal | active | inactive | disabled`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "ime-mode"?: Property.ImeMode;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "offset-block"?: Property.InsetBlock<TLength>;
    /**
     * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "offset-block-end"?: Property.InsetBlockEnd<TLength>;
    /**
     * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "offset-block-start"?: Property.InsetBlockStart<TLength>;
    /**
     * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>{1,2}`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "offset-inline"?: Property.InsetInline<TLength>;
    /**
     * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "offset-inline-end"?: Property.InsetInlineEnd<TLength>;
    /**
     * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
     *
     * **Syntax**: `<'top'>`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "offset-inline-start"?: Property.InsetInlineStart<TLength>;
    /**
     * The **`scroll-snap-coordinate`** CSS property defines the x and y coordinate positions within an element that will align with its nearest ancestor scroll container's `scroll-snap-destination` for each respective axis.
     *
     * **Syntax**: `none | <position>#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "scroll-snap-coordinate"?: Property.ScrollSnapCoordinate<TLength>;
    /**
     * The **`scroll-snap-destination`** CSS property defines the position in x and y coordinates within the scroll container's visual viewport which element snap points align with.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `0px 0px`
     *
     * @deprecated
     */
    "scroll-snap-destination"?: Property.ScrollSnapDestination<TLength>;
    /**
     * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "scroll-snap-points-x"?: Property.ScrollSnapPointsX;
    /**
     * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "scroll-snap-points-y"?: Property.ScrollSnapPointsY;
    /**
     * The **`scroll-snap-type-x`** CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one.
     *
     * **Syntax**: `none | mandatory | proximity`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "scroll-snap-type-x"?: Property.ScrollSnapTypeX;
    /**
     * The **`scroll-snap-type-y`** CSS property defines how strictly snap points are enforced on the vertical axis of the scroll container in case there is one.
     *
     * **Syntax**: `none | mandatory | proximity`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "scroll-snap-type-y"?: Property.ScrollSnapTypeY;
    /**
     * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `Scrollbar`
     *
     * @deprecated
     */
    "scrollbar-track-color"?: Property.MsScrollbarTrackColor;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    "-khtml-box-align"?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    "-khtml-box-direction"?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-khtml-box-flex"?: Property.BoxFlex;
    /**
     * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "-khtml-box-flex-group"?: Property.BoxFlexGroup;
    /**
     * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
     *
     * **Syntax**: `single | multiple`
     *
     * **Initial value**: `single`
     *
     * @deprecated
     */
    "-khtml-box-lines"?: Property.BoxLines;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "-khtml-box-ordinal-group"?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    "-khtml-box-orient"?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    "-khtml-box-pack"?: Property.BoxPack;
    /**
     * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
     *
     * **Syntax**: `auto | loose | normal | strict | anywhere`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "-khtml-line-break"?: Property.LineBreak;
    /**
     * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `1.0`
     *
     * @deprecated
     */
    "-khtml-opacity"?: Property.Opacity;
    /**
     * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
     *
     * **Syntax**: `auto | text | none | contain | all`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "-khtml-user-select"?: Property.UserSelect;
    /**
     * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `border-box`
     *
     * @deprecated
     */
    "-moz-background-clip"?: Property.BackgroundClip;
    /**
     * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
     *
     * **Syntax**: `slice | clone`
     *
     * **Initial value**: `slice`
     *
     * @deprecated
     */
    "-moz-background-inline-policy"?: Property.BoxDecorationBreak;
    /**
     * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
     *
     * **Syntax**: `<box>#`
     *
     * **Initial value**: `padding-box`
     *
     * @deprecated
     */
    "-moz-background-origin"?: Property.BackgroundOrigin;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     *
     * @deprecated
     */
    "-moz-background-size"?: Property.BackgroundSize<TLength>;
    /**
     * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
     *
     * **Syntax**: `<url> | none`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-moz-binding"?: Property.MozBinding;
    /**
     * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
     *
     * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
     *
     * @deprecated
     */
    "-moz-border-radius"?: Property.BorderRadius<TLength>;
    /**
     * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-border-radius-bottomleft"?: Property.BorderBottomLeftRadius<TLength>;
    /**
     * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-border-radius-bottomright"?: Property.BorderBottomRightRadius<TLength>;
    /**
     * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-border-radius-topleft"?: Property.BorderTopLeftRadius<TLength>;
    /**
     * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
     *
     * **Syntax**: `<length-percentage>{1,2}`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-border-radius-topright"?: Property.BorderTopRightRadius<TLength>;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    "-moz-box-align"?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    "-moz-box-direction"?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-box-flex"?: Property.BoxFlex;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "-moz-box-ordinal-group"?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    "-moz-box-orient"?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    "-moz-box-pack"?: Property.BoxPack;
    /**
     * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
     *
     * **Syntax**: `none | <shadow>#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-moz-box-shadow"?: Property.BoxShadow;
    /**
     * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness.
     *
     * **Syntax**: `border-box | content-box | margin-box | padding-box`
     *
     * **Initial value**: `content-box`
     *
     * @deprecated
     */
    "-moz-float-edge"?: Property.MozFloatEdge;
    /**
     * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute.
     *
     * **Syntax**: `<integer [0,1]>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-force-broken-image-icon"?: Property.MozForceBrokenImageIcon;
    /**
     * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
     *
     * **Syntax**: `<alpha-value>`
     *
     * **Initial value**: `1.0`
     *
     * @deprecated
     */
    "-moz-opacity"?: Property.Opacity;
    /**
     * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
     *
     * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
     *
     * @deprecated
     */
    "-moz-outline"?: Property.Outline<TLength>;
    /**
     * The **`outline-color`** CSS property sets the color of an element's outline.
     *
     * **Syntax**: `<color> | invert`
     *
     * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
     *
     * @deprecated
     */
    "-moz-outline-color"?: Property.OutlineColor;
    /**
     * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
     *
     * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
     *
     * @deprecated
     */
    "-moz-outline-radius"?: Property.MozOutlineRadius<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-outline-radius-bottomleft"?: Property.MozOutlineRadiusBottomleft<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-outline-radius-bottomright"?: Property.MozOutlineRadiusBottomright<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-outline-radius-topleft"?: Property.MozOutlineRadiusTopleft<TLength>;
    /**
     * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
     *
     * **Syntax**: `<outline-radius>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-moz-outline-radius-topright"?: Property.MozOutlineRadiusTopright<TLength>;
    /**
     * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `auto | <'border-style'>`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-moz-outline-style"?: Property.OutlineStyle;
    /**
     * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
     *
     * **Syntax**: `<line-width>`
     *
     * **Initial value**: `medium`
     *
     * @deprecated
     */
    "-moz-outline-width"?: Property.OutlineWidth<TLength>;
    /**
     * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
     *
     * **Syntax**: `auto | start | end | left | right | center | justify`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "-moz-text-align-last"?: Property.TextAlignLast;
    /**
     * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `currentcolor`
     *
     * @deprecated
     */
    "-moz-text-decoration-color"?: Property.TextDecorationColor;
    /**
     * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
     *
     * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-moz-text-decoration-line"?: Property.TextDecorationLine;
    /**
     * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
     *
     * **Syntax**: `solid | double | dotted | dashed | wavy`
     *
     * **Initial value**: `solid`
     *
     * @deprecated
     */
    "-moz-text-decoration-style"?: Property.TextDecorationStyle;
    /**
     * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
     *
     * **Syntax**: `auto | none | enabled | disabled`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "-moz-user-input"?: Property.MozUserInput;
    /**
     * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
     *
     * **Syntax**: `auto | normal | active | inactive | disabled`
     *
     * **Initial value**: `auto`
     *
     * @deprecated
     */
    "-ms-ime-mode"?: Property.ImeMode;
    /**
     * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
     *
     * **Syntax**: `<color>`
     *
     * **Initial value**: `Scrollbar`
     *
     * @deprecated
     */
    "-ms-scrollbar-track-color"?: Property.MsScrollbarTrackColor;
    /**
     * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
     *
     * **Syntax**: `<single-animation>#`
     *
     * @deprecated
     */
    "-o-animation"?: Property.Animation<TTime>;
    /**
     * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    "-o-animation-delay"?: Property.AnimationDelay<TTime>;
    /**
     * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
     *
     * **Syntax**: `<single-animation-direction>#`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    "-o-animation-direction"?: Property.AnimationDirection;
    /**
     * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    "-o-animation-duration"?: Property.AnimationDuration<TTime>;
    /**
     * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
     *
     * **Syntax**: `<single-animation-fill-mode>#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-o-animation-fill-mode"?: Property.AnimationFillMode;
    /**
     * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
     *
     * **Syntax**: `<single-animation-iteration-count>#`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "-o-animation-iteration-count"?: Property.AnimationIterationCount;
    /**
     * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
     *
     * **Syntax**: `[ none | <keyframes-name> ]#`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-o-animation-name"?: Property.AnimationName;
    /**
     * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
     *
     * **Syntax**: `<single-animation-play-state>#`
     *
     * **Initial value**: `running`
     *
     * @deprecated
     */
    "-o-animation-play-state"?: Property.AnimationPlayState;
    /**
     * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * @deprecated
     */
    "-o-animation-timing-function"?: Property.AnimationTimingFunction;
    /**
     * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
     *
     * **Syntax**: `<bg-size>#`
     *
     * **Initial value**: `auto auto`
     *
     * @deprecated
     */
    "-o-background-size"?: Property.BackgroundSize<TLength>;
    /**
     * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
     *
     * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
     *
     * @deprecated
     */
    "-o-border-image"?: Property.BorderImage;
    /**
     * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
     *
     * **Syntax**: `fill | contain | cover | none | scale-down`
     *
     * **Initial value**: `fill`
     *
     * @deprecated
     */
    "-o-object-fit"?: Property.ObjectFit;
    /**
     * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
     *
     * **Syntax**: `<position>`
     *
     * **Initial value**: `50% 50%`
     *
     * @deprecated
     */
    "-o-object-position"?: Property.ObjectPosition<TLength>;
    /**
     * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
     *
     * **Syntax**: `<integer> | <length>`
     *
     * **Initial value**: `8`
     *
     * @deprecated
     */
    "-o-tab-size"?: Property.TabSize<TLength>;
    /**
     * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
     *
     * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
     *
     * **Initial value**: `clip`
     *
     * @deprecated
     */
    "-o-text-overflow"?: Property.TextOverflow;
    /**
     * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
     *
     * **Syntax**: `none | <transform-list>`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-o-transform"?: Property.Transform;
    /**
     * The **`transform-origin`** CSS property sets the origin for an element's transformations.
     *
     * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
     *
     * **Initial value**: `50% 50% 0`
     *
     * @deprecated
     */
    "-o-transform-origin"?: Property.TransformOrigin<TLength>;
    /**
     * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
     *
     * **Syntax**: `<single-transition>#`
     *
     * @deprecated
     */
    "-o-transition"?: Property.Transition<TTime>;
    /**
     * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    "-o-transition-delay"?: Property.TransitionDelay<TTime>;
    /**
     * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
     *
     * **Syntax**: `<time>#`
     *
     * **Initial value**: `0s`
     *
     * @deprecated
     */
    "-o-transition-duration"?: Property.TransitionDuration<TTime>;
    /**
     * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
     *
     * **Syntax**: `none | <single-transition-property>#`
     *
     * **Initial value**: all
     *
     * @deprecated
     */
    "-o-transition-property"?: Property.TransitionProperty;
    /**
     * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
     *
     * **Syntax**: `<easing-function>#`
     *
     * **Initial value**: `ease`
     *
     * @deprecated
     */
    "-o-transition-timing-function"?: Property.TransitionTimingFunction;
    /**
     * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | baseline | stretch`
     *
     * **Initial value**: `stretch`
     *
     * @deprecated
     */
    "-webkit-box-align"?: Property.BoxAlign;
    /**
     * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
     *
     * **Syntax**: `normal | reverse | inherit`
     *
     * **Initial value**: `normal`
     *
     * @deprecated
     */
    "-webkit-box-direction"?: Property.BoxDirection;
    /**
     * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
     *
     * **Syntax**: `<number>`
     *
     * **Initial value**: `0`
     *
     * @deprecated
     */
    "-webkit-box-flex"?: Property.BoxFlex;
    /**
     * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "-webkit-box-flex-group"?: Property.BoxFlexGroup;
    /**
     * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
     *
     * **Syntax**: `single | multiple`
     *
     * **Initial value**: `single`
     *
     * @deprecated
     */
    "-webkit-box-lines"?: Property.BoxLines;
    /**
     * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
     *
     * **Syntax**: `<integer>`
     *
     * **Initial value**: `1`
     *
     * @deprecated
     */
    "-webkit-box-ordinal-group"?: Property.BoxOrdinalGroup;
    /**
     * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
     *
     * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
     *
     * **Initial value**: `inline-axis` (`horizontal` in XUL)
     *
     * @deprecated
     */
    "-webkit-box-orient"?: Property.BoxOrient;
    /**
     * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
     *
     * **Syntax**: `start | center | end | justify`
     *
     * **Initial value**: `start`
     *
     * @deprecated
     */
    "-webkit-box-pack"?: Property.BoxPack;
    /**
     * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-webkit-scroll-snap-points-x"?: Property.ScrollSnapPointsX;
    /**
     * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
     *
     * **Syntax**: `none | repeat( <length-percentage> )`
     *
     * **Initial value**: `none`
     *
     * @deprecated
     */
    "-webkit-scroll-snap-points-y"?: Property.ScrollSnapPointsY;
}
export interface SvgPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
    "alignment-baseline"?: Property.AlignmentBaseline;
    "baseline-shift"?: Property.BaselineShift<TLength>;
    clip?: Property.Clip;
    "clip-path"?: Property.ClipPath;
    "clip-rule"?: Property.ClipRule;
    color?: Property.Color;
    "color-interpolation"?: Property.ColorInterpolation;
    "color-rendering"?: Property.ColorRendering;
    cursor?: Property.Cursor;
    direction?: Property.Direction;
    display?: Property.Display;
    "dominant-baseline"?: Property.DominantBaseline;
    fill?: Property.Fill;
    "fill-opacity"?: Property.FillOpacity;
    "fill-rule"?: Property.FillRule;
    filter?: Property.Filter;
    "flood-color"?: Property.FloodColor;
    "flood-opacity"?: Property.FloodOpacity;
    font?: Property.Font;
    "font-family"?: Property.FontFamily;
    "font-size"?: Property.FontSize<TLength>;
    "font-size-adjust"?: Property.FontSizeAdjust;
    "font-stretch"?: Property.FontStretch;
    "font-style"?: Property.FontStyle;
    "font-variant"?: Property.FontVariant;
    "font-weight"?: Property.FontWeight;
    "glyph-orientation-vertical"?: Property.GlyphOrientationVertical;
    "image-rendering"?: Property.ImageRendering;
    "letter-spacing"?: Property.LetterSpacing<TLength>;
    "lighting-color"?: Property.LightingColor;
    "line-height"?: Property.LineHeight<TLength>;
    marker?: Property.Marker;
    "marker-end"?: Property.MarkerEnd;
    "marker-mid"?: Property.MarkerMid;
    "marker-start"?: Property.MarkerStart;
    mask?: Property.Mask<TLength>;
    opacity?: Property.Opacity;
    overflow?: Property.Overflow;
    "paint-order"?: Property.PaintOrder;
    "pointer-events"?: Property.PointerEvents;
    "shape-rendering"?: Property.ShapeRendering;
    "stop-color"?: Property.StopColor;
    "stop-opacity"?: Property.StopOpacity;
    stroke?: Property.Stroke;
    "stroke-dasharray"?: Property.StrokeDasharray<TLength>;
    "stroke-dashoffset"?: Property.StrokeDashoffset<TLength>;
    "stroke-linecap"?: Property.StrokeLinecap;
    "stroke-linejoin"?: Property.StrokeLinejoin;
    "stroke-miterlimit"?: Property.StrokeMiterlimit;
    "stroke-opacity"?: Property.StrokeOpacity;
    "stroke-width"?: Property.StrokeWidth<TLength>;
    "text-anchor"?: Property.TextAnchor;
    "text-decoration"?: Property.TextDecoration<TLength>;
    "text-rendering"?: Property.TextRendering;
    "unicode-bidi"?: Property.UnicodeBidi;
    "vector-effect"?: Property.VectorEffect;
    visibility?: Property.Visibility;
    "white-space"?: Property.WhiteSpace;
    "word-spacing"?: Property.WordSpacing<TLength>;
    "writing-mode"?: Property.WritingMode;
}
export interface PropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> extends StandardPropertiesHyphen<TLength, TTime>, VendorPropertiesHyphen<TLength, TTime>, ObsoletePropertiesHyphen<TLength, TTime>, SvgPropertiesHyphen<TLength, TTime> {
}
export declare type StandardLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof StandardLonghandProperties<TLength, TTime>]: StandardLonghandProperties<TLength, TTime>[P] | StandardLonghandProperties<TLength, TTime>[P][];
};
export declare type StandardShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof StandardShorthandProperties<TLength, TTime>]: StandardShorthandProperties<TLength, TTime>[P] | StandardShorthandProperties<TLength, TTime>[P][];
};
export interface StandardPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandPropertiesFallback<TLength, TTime>, StandardShorthandPropertiesFallback<TLength, TTime> {
}
export declare type VendorLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof VendorLonghandProperties<TLength, TTime>]: VendorLonghandProperties<TLength, TTime>[P] | VendorLonghandProperties<TLength, TTime>[P][];
};
export declare type VendorShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof VendorShorthandProperties<TLength, TTime>]: VendorShorthandProperties<TLength, TTime>[P] | VendorShorthandProperties<TLength, TTime>[P][];
};
export interface VendorPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandPropertiesFallback<TLength, TTime>, VendorShorthandPropertiesFallback<TLength, TTime> {
}
export declare type ObsoletePropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof ObsoleteProperties<TLength, TTime>]: ObsoleteProperties<TLength, TTime>[P] | ObsoleteProperties<TLength, TTime>[P][];
};
export declare type SvgPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof SvgProperties<TLength, TTime>]: SvgProperties<TLength, TTime>[P] | SvgProperties<TLength, TTime>[P][];
};
export interface PropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardPropertiesFallback<TLength, TTime>, VendorPropertiesFallback<TLength, TTime>, ObsoletePropertiesFallback<TLength, TTime>, SvgPropertiesFallback<TLength, TTime> {
}
export declare type StandardLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof StandardLonghandPropertiesHyphen<TLength, TTime>]: StandardLonghandPropertiesHyphen<TLength, TTime>[P] | StandardLonghandPropertiesHyphen<TLength, TTime>[P][];
};
export declare type StandardShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof StandardShorthandPropertiesHyphen<TLength, TTime>]: StandardShorthandPropertiesHyphen<TLength, TTime>[P] | StandardShorthandPropertiesHyphen<TLength, TTime>[P][];
};
export interface StandardPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandPropertiesHyphenFallback<TLength, TTime>, StandardShorthandPropertiesHyphenFallback<TLength, TTime> {
}
export declare type VendorLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof VendorLonghandPropertiesHyphen<TLength, TTime>]: VendorLonghandPropertiesHyphen<TLength, TTime>[P] | VendorLonghandPropertiesHyphen<TLength, TTime>[P][];
};
export declare type VendorShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof VendorShorthandPropertiesHyphen<TLength, TTime>]: VendorShorthandPropertiesHyphen<TLength, TTime>[P] | VendorShorthandPropertiesHyphen<TLength, TTime>[P][];
};
export interface VendorPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandPropertiesHyphenFallback<TLength, TTime>, VendorShorthandPropertiesHyphenFallback<TLength, TTime> {
}
export declare type ObsoletePropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof ObsoletePropertiesHyphen<TLength, TTime>]: ObsoletePropertiesHyphen<TLength, TTime>[P] | ObsoletePropertiesHyphen<TLength, TTime>[P][];
};
export declare type SvgPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
    [P in keyof SvgPropertiesHyphen<TLength, TTime>]: SvgPropertiesHyphen<TLength, TTime>[P] | SvgPropertiesHyphen<TLength, TTime>[P][];
};
export interface PropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardPropertiesHyphenFallback<TLength, TTime>, VendorPropertiesHyphenFallback<TLength, TTime>, ObsoletePropertiesHyphenFallback<TLength, TTime>, SvgPropertiesHyphenFallback<TLength, TTime> {
}
export declare type AtRules = "@charset" | "@counter-style" | "@document" | "@font-face" | "@font-feature-values" | "@import" | "@keyframes" | "@media" | "@namespace" | "@page" | "@property" | "@supports" | "@viewport";
export declare type AdvancedPseudos = ":-moz-any()" | ":-moz-dir" | ":-webkit-any()" | "::cue" | "::cue-region" | "::part" | "::slotted" | ":dir" | ":has" | ":host" | ":host-context" | ":is" | ":lang" | ":matches()" | ":not" | ":nth-child" | ":nth-last-child" | ":nth-last-of-type" | ":nth-of-type" | ":where";
export declare type SimplePseudos = ":-khtml-any-link" | ":-moz-any-link" | ":-moz-focusring" | ":-moz-full-screen" | ":-moz-placeholder" | ":-moz-read-only" | ":-moz-read-write" | ":-moz-ui-invalid" | ":-moz-ui-valid" | ":-ms-fullscreen" | ":-ms-input-placeholder" | ":-webkit-any-link" | ":-webkit-full-screen" | "::-moz-placeholder" | "::-moz-progress-bar" | "::-moz-range-progress" | "::-moz-range-thumb" | "::-moz-range-track" | "::-moz-selection" | "::-ms-backdrop" | "::-ms-browse" | "::-ms-check" | "::-ms-clear" | "::-ms-fill" | "::-ms-fill-lower" | "::-ms-fill-upper" | "::-ms-input-placeholder" | "::-ms-reveal" | "::-ms-thumb" | "::-ms-ticks-after" | "::-ms-ticks-before" | "::-ms-tooltip" | "::-ms-track" | "::-ms-value" | "::-webkit-backdrop" | "::-webkit-input-placeholder" | "::-webkit-progress-bar" | "::-webkit-progress-inner-value" | "::-webkit-progress-value" | "::-webkit-slider-runnable-track" | "::-webkit-slider-thumb" | "::after" | "::backdrop" | "::before" | "::cue" | "::cue-region" | "::first-letter" | "::first-line" | "::grammar-error" | "::marker" | "::placeholder" | "::selection" | "::spelling-error" | "::target-text" | ":active" | ":after" | ":any-link" | ":before" | ":blank" | ":checked" | ":current" | ":default" | ":defined" | ":disabled" | ":empty" | ":enabled" | ":first" | ":first-child" | ":first-letter" | ":first-line" | ":first-of-type" | ":focus" | ":focus-visible" | ":focus-within" | ":fullscreen" | ":future" | ":hover" | ":in-range" | ":indeterminate" | ":invalid" | ":last-child" | ":last-of-type" | ":left" | ":link" | ":local-link" | ":nth-col" | ":nth-last-col" | ":only-child" | ":only-of-type" | ":optional" | ":out-of-range" | ":past" | ":paused" | ":picture-in-picture" | ":placeholder-shown" | ":read-only" | ":read-write" | ":required" | ":right" | ":root" | ":scope" | ":target" | ":target-within" | ":user-invalid" | ":user-valid" | ":valid" | ":visited";
export declare type Pseudos = AdvancedPseudos | SimplePseudos;
export declare type HtmlAttributes = "[abbr]" | "[accept-charset]" | "[accept]" | "[accesskey]" | "[action]" | "[align]" | "[alink]" | "[allow]" | "[allowfullscreen]" | "[allowpaymentrequest]" | "[alt]" | "[archive]" | "[async]" | "[autobuffer]" | "[autocapitalize]" | "[autocomplete]" | "[autofocus]" | "[autoplay]" | "[axis]" | "[background]" | "[behavior]" | "[bgcolor]" | "[border]" | "[bottommargin]" | "[buffered]" | "[cellpadding]" | "[cellspacing]" | "[char]" | "[charoff]" | "[charset]" | "[checked]" | "[cite]" | "[class]" | "[classid]" | "[clear]" | "[code]" | "[codebase]" | "[codetype]" | "[color]" | "[cols]" | "[colspan]" | "[command]" | "[compact]" | "[content]" | "[contenteditable]" | "[contextmenu]" | "[controls]" | "[coords]" | "[crossorigin]" | "[data]" | "[datafld]" | "[datasrc]" | "[datetime]" | "[declare]" | "[decoding]" | "[default]" | "[defer]" | "[dir]" | "[direction]" | "[dirname]" | "[disabled]" | "[download]" | "[draggable]" | "[enctype]" | "[enterkeyhint]" | "[exportparts]" | "[face]" | "[for]" | "[form]" | "[formaction]" | "[formenctype]" | "[formmethod]" | "[formnovalidate]" | "[formtarget]" | "[frame]" | "[frameborder]" | "[headers]" | "[height]" | "[hidden]" | "[high]" | "[href]" | "[hreflang]" | "[hspace]" | "[http-equiv]" | "[icon]" | "[id]" | "[imagesizes]" | "[imagesrcset]" | "[inputmode]" | "[integrity]" | "[intrinsicsize]" | "[is]" | "[ismap]" | "[itemid]" | "[itemprop]" | "[itemref]" | "[itemscope]" | "[itemtype]" | "[kind]" | "[label]" | "[lang]" | "[language]" | "[leftmargin]" | "[link]" | "[loading]" | "[longdesc]" | "[loop]" | "[low]" | "[manifest]" | "[marginheight]" | "[marginwidth]" | "[max]" | "[maxlength]" | "[mayscript]" | "[media]" | "[method]" | "[methods]" | "[min]" | "[minlength]" | "[moz-opaque]" | "[mozallowfullscreen]" | "[mozcurrentsampleoffset]" | "[msallowfullscreen]" | "[multiple]" | "[muted]" | "[name]" | "[nohref]" | "[nomodule]" | "[nonce]" | "[noresize]" | "[noshade]" | "[novalidate]" | "[nowrap]" | "[object]" | "[onafterprint]" | "[onbeforeprint]" | "[onbeforeunload]" | "[onblur]" | "[onerror]" | "[onfocus]" | "[onhashchange]" | "[onlanguagechange]" | "[onload]" | "[onmessage]" | "[onoffline]" | "[ononline]" | "[onpopstate]" | "[onredo]" | "[onresize]" | "[onstorage]" | "[onundo]" | "[onunload]" | "[open]" | "[optimum]" | "[part]" | "[ping]" | "[placeholder]" | "[played]" | "[poster]" | "[prefetch]" | "[preload]" | "[profile]" | "[prompt]" | "[radiogroup]" | "[readonly]" | "[referrerPolicy]" | "[referrerpolicy]" | "[rel]" | "[required]" | "[rev]" | "[reversed]" | "[rightmargin]" | "[rows]" | "[rowspan]" | "[rules]" | "[sandbox-allow-downloads]" | "[sandbox-allow-modals]" | "[sandbox-allow-popups-to-escape-sandbox]" | "[sandbox-allow-popups]" | "[sandbox-allow-presentation]" | "[sandbox-allow-same-origin]" | "[sandbox-allow-storage-access-by-user-activation]" | "[sandbox-allow-top-navigation-by-user-activation]" | "[sandbox]" | "[scope]" | "[scoped]" | "[scrollamount]" | "[scrolldelay]" | "[scrolling]" | "[selected]" | "[shape]" | "[size]" | "[sizes]" | "[slot]" | "[span]" | "[spellcheck]" | "[src]" | "[srcdoc]" | "[srclang]" | "[srcset]" | "[standby]" | "[start]" | "[style]" | "[summary]" | "[tabindex]" | "[target]" | "[text]" | "[title]" | "[topmargin]" | "[translate]" | "[truespeed]" | "[type]" | "[usemap]" | "[valign]" | "[value]" | "[valuetype]" | "[version]" | "[vlink]" | "[volume]" | "[vspace]" | "[webkitallowfullscreen]" | "[width]" | "[wrap]" | "[xmlns]";
export declare type SvgAttributes = "[accent-height]" | "[alignment-baseline]" | "[allowReorder]" | "[alphabetic]" | "[animation]" | "[arabic-form]" | "[ascent]" | "[attributeName]" | "[attributeType]" | "[azimuth]" | "[baseFrequency]" | "[baseProfile]" | "[baseline-shift]" | "[bbox]" | "[bias]" | "[by]" | "[calcMode]" | "[cap-height]" | "[class]" | "[clip-path]" | "[clip-rule]" | "[clipPathUnits]" | "[clip]" | "[color-interpolation-filters]" | "[color-interpolation]" | "[color-profile]" | "[color-rendering]" | "[color]" | "[contentScriptType]" | "[contentStyleType]" | "[cursor]" | "[cx]" | "[cy]" | "[d]" | "[descent]" | "[diffuseConstant]" | "[direction]" | "[display]" | "[divisor]" | "[document]" | "[dominant-baseline]" | "[download]" | "[dur]" | "[dx]" | "[dy]" | "[edgeMode]" | "[elevation]" | "[enable-background]" | "[externalResourcesRequired]" | "[fill-opacity]" | "[fill-rule]" | "[fill]" | "[filterRes]" | "[filterUnits]" | "[filter]" | "[flood-color]" | "[flood-opacity]" | "[font-family]" | "[font-size-adjust]" | "[font-size]" | "[font-stretch]" | "[font-style]" | "[font-variant]" | "[font-weight]" | "[format]" | "[fr]" | "[from]" | "[fx]" | "[fy]" | "[g1]" | "[g2]" | "[global]" | "[glyph-name]" | "[glyph-orientation-horizontal]" | "[glyph-orientation-vertical]" | "[glyphRef]" | "[gradientTransform]" | "[gradientUnits]" | "[graphical]" | "[hanging]" | "[hatchContentUnits]" | "[hatchUnits]" | "[height]" | "[horiz-adv-x]" | "[horiz-origin-x]" | "[horiz-origin-y]" | "[href]" | "[hreflang]" | "[id]" | "[ideographic]" | "[image-rendering]" | "[in2]" | "[in]" | "[k1]" | "[k2]" | "[k3]" | "[k4]" | "[k]" | "[kernelMatrix]" | "[kernelUnitLength]" | "[kerning]" | "[keyPoints]" | "[lang]" | "[lengthAdjust]" | "[letter-spacing]" | "[lighting-color]" | "[limitingConeAngle]" | "[local]" | "[marker-end]" | "[marker-mid]" | "[marker-start]" | "[markerHeight]" | "[markerUnits]" | "[markerWidth]" | "[maskContentUnits]" | "[maskUnits]" | "[mask]" | "[mathematical]" | "[media]" | "[mode]" | "[name]" | "[numOctaves]" | "[offset]" | "[opacity]" | "[operator]" | "[order]" | "[orient]" | "[orientation]" | "[origin]" | "[overflow]" | "[overline-position]" | "[overline-thickness]" | "[paint-order]" | "[panose-1]" | "[path]" | "[patternContentUnits]" | "[patternTransform]" | "[patternUnits]" | "[ping]" | "[pitch]" | "[pointer-events]" | "[pointsAtX]" | "[pointsAtY]" | "[pointsAtZ]" | "[points]" | "[preserveAlpha]" | "[preserveAspectRatio]" | "[primitiveUnits]" | "[r]" | "[radius]" | "[refX]" | "[refY]" | "[referrerPolicy]" | "[rel]" | "[rendering-intent]" | "[repeatCount]" | "[requiredExtensions]" | "[requiredFeatures]" | "[rotate]" | "[rx]" | "[ry]" | "[scale]" | "[seed]" | "[shape-rendering]" | "[side]" | "[slope]" | "[solid-color]" | "[solid-opacity]" | "[spacing]" | "[specularConstant]" | "[specularExponent]" | "[spreadMethod]" | "[startOffset]" | "[stdDeviation]" | "[stemh]" | "[stemv]" | "[stitchTiles]" | "[stop-color]" | "[stop-opacity]" | "[strikethrough-position]" | "[strikethrough-thickness]" | "[string]" | "[stroke-dasharray]" | "[stroke-dashoffset]" | "[stroke-linecap]" | "[stroke-linejoin]" | "[stroke-miterlimit]" | "[stroke-opacity]" | "[stroke-width]" | "[stroke]" | "[style]" | "[surfaceScale]" | "[systemLanguage]" | "[tabindex]" | "[targetX]" | "[targetY]" | "[target]" | "[text-anchor]" | "[text-decoration]" | "[text-overflow]" | "[text-rendering]" | "[textLength]" | "[title]" | "[to]" | "[transform-origin]" | "[transform]" | "[type]" | "[u1]" | "[u2]" | "[underline-position]" | "[underline-thickness]" | "[unicode-bidi]" | "[unicode-range]" | "[unicode]" | "[units-per-em]" | "[v-alphabetic]" | "[v-hanging]" | "[v-ideographic]" | "[v-mathematical]" | "[values]" | "[vector-effect]" | "[version]" | "[vert-adv-y]" | "[vert-origin-x]" | "[vert-origin-y]" | "[viewBox]" | "[viewTarget]" | "[visibility]" | "[white-space]" | "[width]" | "[widths]" | "[word-spacing]" | "[writing-mode]" | "[x-height]" | "[x1]" | "[x2]" | "[xChannelSelector]" | "[x]" | "[y1]" | "[y2]" | "[yChannelSelector]" | "[y]" | "[z]" | "[zoomAndPan]";
export declare type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "unset";
export declare namespace Property {
    type AlignContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
    type AlignItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
    type AlignSelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "normal" | "stretch" | (string & {});
    type AlignTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
    type All = Globals;
    type Animation<TTime = string & {}> = Globals | DataType.SingleAnimation<TTime> | (string & {});
    type AnimationDelay<TTime = string & {}> = Globals | TTime | (string & {});
    type AnimationDirection = Globals | DataType.SingleAnimationDirection | (string & {});
    type AnimationDuration<TTime = string & {}> = Globals | TTime | (string & {});
    type AnimationFillMode = Globals | DataType.SingleAnimationFillMode | (string & {});
    type AnimationIterationCount = Globals | "infinite" | (string & {}) | (number & {});
    type AnimationName = Globals | "none" | (string & {});
    type AnimationPlayState = Globals | "paused" | "running" | (string & {});
    type AnimationTimingFunction = Globals | DataType.EasingFunction | (string & {});
    type Appearance = Globals | DataType.CompatAuto | "auto" | "menulist-button" | "none" | "textfield";
    type AspectRatio = Globals | "auto" | (string & {});
    type Azimuth = Globals | "behind" | "center" | "center-left" | "center-right" | "far-left" | "far-right" | "left" | "left-side" | "leftwards" | "right" | "right-side" | "rightwards" | (string & {});
    type BackdropFilter = Globals | "none" | (string & {});
    type BackfaceVisibility = Globals | "hidden" | "visible";
    type Background<TLength = (string & {}) | 0> = Globals | DataType.FinalBgLayer<TLength> | (string & {});
    type BackgroundAttachment = Globals | DataType.Attachment | (string & {});
    type BackgroundBlendMode = Globals | DataType.BlendMode | (string & {});
    type BackgroundClip = Globals | DataType.Box | (string & {});
    type BackgroundColor = Globals | DataType.Color;
    type BackgroundImage = Globals | "none" | (string & {});
    type BackgroundOrigin = Globals | DataType.Box | (string & {});
    type BackgroundPosition<TLength = (string & {}) | 0> = Globals | DataType.BgPosition<TLength> | (string & {});
    type BackgroundPositionX<TLength = (string & {}) | 0> = Globals | TLength | "center" | "left" | "right" | "x-end" | "x-start" | (string & {});
    type BackgroundPositionY<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "top" | "y-end" | "y-start" | (string & {});
    type BackgroundRepeat = Globals | DataType.RepeatStyle | (string & {});
    type BackgroundSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
    type BlockOverflow = Globals | "clip" | "ellipsis" | (string & {});
    type BlockSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
    type Border<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderBlock<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderBlockColor = Globals | DataType.Color | (string & {});
    type BorderBlockEnd<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderBlockEndColor = Globals | DataType.Color;
    type BorderBlockEndStyle = Globals | DataType.LineStyle;
    type BorderBlockEndWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderBlockStart<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderBlockStartColor = Globals | DataType.Color;
    type BorderBlockStartStyle = Globals | DataType.LineStyle;
    type BorderBlockStartWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderBlockStyle = Globals | DataType.LineStyle;
    type BorderBlockWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderBottom<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderBottomColor = Globals | DataType.Color;
    type BorderBottomLeftRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderBottomRightRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderBottomStyle = Globals | DataType.LineStyle;
    type BorderBottomWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderCollapse = Globals | "collapse" | "separate";
    type BorderColor = Globals | DataType.Color | (string & {});
    type BorderEndEndRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderEndStartRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderImage = Globals | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {});
    type BorderImageOutset<TLength = (string & {}) | 0> = Globals | TLength | (string & {}) | (number & {});
    type BorderImageRepeat = Globals | "repeat" | "round" | "space" | "stretch" | (string & {});
    type BorderImageSlice = Globals | (string & {}) | (number & {});
    type BorderImageSource = Globals | "none" | (string & {});
    type BorderImageWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
    type BorderInline<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderInlineColor = Globals | DataType.Color | (string & {});
    type BorderInlineEnd<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderInlineEndColor = Globals | DataType.Color;
    type BorderInlineEndStyle = Globals | DataType.LineStyle;
    type BorderInlineEndWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderInlineStart<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderInlineStartColor = Globals | DataType.Color;
    type BorderInlineStartStyle = Globals | DataType.LineStyle;
    type BorderInlineStartWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderInlineStyle = Globals | DataType.LineStyle;
    type BorderInlineWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderLeft<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderLeftColor = Globals | DataType.Color;
    type BorderLeftStyle = Globals | DataType.LineStyle;
    type BorderLeftWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderRight<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderRightColor = Globals | DataType.Color;
    type BorderRightStyle = Globals | DataType.LineStyle;
    type BorderRightWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderSpacing<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderStartEndRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderStartStartRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderStyle = Globals | DataType.LineStyle | (string & {});
    type BorderTop<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type BorderTopColor = Globals | DataType.Color;
    type BorderTopLeftRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderTopRightRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type BorderTopStyle = Globals | DataType.LineStyle;
    type BorderTopWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type BorderWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
    type Bottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type BoxAlign = Globals | "baseline" | "center" | "end" | "start" | "stretch";
    type BoxDecorationBreak = Globals | "clone" | "slice";
    type BoxDirection = Globals | "inherit" | "normal" | "reverse";
    type BoxFlex = Globals | (number & {});
    type BoxFlexGroup = Globals | (number & {});
    type BoxLines = Globals | "multiple" | "single";
    type BoxOrdinalGroup = Globals | (number & {});
    type BoxOrient = Globals | "block-axis" | "horizontal" | "inherit" | "inline-axis" | "vertical";
    type BoxPack = Globals | "center" | "end" | "justify" | "start";
    type BoxShadow = Globals | "none" | (string & {});
    type BoxSizing = Globals | "border-box" | "content-box";
    type BreakAfter = Globals | "all" | "always" | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region" | "column" | "left" | "page" | "recto" | "region" | "right" | "verso";
    type BreakBefore = Globals | "all" | "always" | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region" | "column" | "left" | "page" | "recto" | "region" | "right" | "verso";
    type BreakInside = Globals | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region";
    type CaptionSide = Globals | "block-end" | "block-start" | "bottom" | "inline-end" | "inline-start" | "top";
    type CaretColor = Globals | DataType.Color | "auto";
    type Clear = Globals | "both" | "inline-end" | "inline-start" | "left" | "none" | "right";
    type Clip = Globals | "auto" | (string & {});
    type ClipPath = Globals | DataType.GeometryBox | "none" | (string & {});
    type Color = Globals | DataType.Color;
    type ColorAdjust = Globals | "economy" | "exact";
    type ColorScheme = Globals | "dark" | "light" | "normal" | (string & {});
    type ColumnCount = Globals | "auto" | (number & {});
    type ColumnFill = Globals | "auto" | "balance";
    type ColumnGap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
    type ColumnRule<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type ColumnRuleColor = Globals | DataType.Color;
    type ColumnRuleStyle = Globals | DataType.LineStyle | (string & {});
    type ColumnRuleWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
    type ColumnSpan = Globals | "all" | "none";
    type ColumnWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto";
    type Columns<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
    type Contain = Globals | "content" | "layout" | "none" | "paint" | "size" | "strict" | "style" | (string & {});
    type Content = Globals | DataType.ContentList | "none" | "normal" | (string & {});
    type ContentVisibility = Globals | "auto" | "hidden" | "visible";
    type CounterIncrement = Globals | "none" | (string & {});
    type CounterReset = Globals | "none" | (string & {});
    type CounterSet = Globals | "none" | (string & {});
    type Cursor = Globals | "-moz-grab" | "-webkit-grab" | "alias" | "all-scroll" | "auto" | "cell" | "col-resize" | "context-menu" | "copy" | "crosshair" | "default" | "e-resize" | "ew-resize" | "grab" | "grabbing" | "help" | "move" | "n-resize" | "ne-resize" | "nesw-resize" | "no-drop" | "none" | "not-allowed" | "ns-resize" | "nw-resize" | "nwse-resize" | "pointer" | "progress" | "row-resize" | "s-resize" | "se-resize" | "sw-resize" | "text" | "vertical-text" | "w-resize" | "wait" | "zoom-in" | "zoom-out" | (string & {});
    type Direction = Globals | "ltr" | "rtl";
    type Display = Globals | DataType.DisplayOutside | DataType.DisplayInside | DataType.DisplayInternal | DataType.DisplayLegacy | "contents" | "list-item" | "none" | (string & {});
    type EmptyCells = Globals | "hide" | "show";
    type Filter = Globals | "none" | (string & {});
    type Flex<TLength = (string & {}) | 0> = Globals | TLength | "auto" | "content" | "fit-content" | "max-content" | "min-content" | "none" | (string & {}) | (number & {});
    type FlexBasis<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-auto" | "auto" | "content" | "fit-content" | "max-content" | "min-content" | (string & {});
    type FlexDirection = Globals | "column" | "column-reverse" | "row" | "row-reverse";
    type FlexFlow = Globals | "column" | "column-reverse" | "nowrap" | "row" | "row-reverse" | "wrap" | "wrap-reverse" | (string & {});
    type FlexGrow = Globals | (number & {});
    type FlexShrink = Globals | (number & {});
    type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
    type Float = Globals | "inline-end" | "inline-start" | "left" | "none" | "right";
    type Font = Globals | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar" | (string & {});
    type FontFamily = Globals | DataType.GenericFamily | (string & {});
    type FontFeatureSettings = Globals | "normal" | (string & {});
    type FontKerning = Globals | "auto" | "none" | "normal";
    type FontLanguageOverride = Globals | "normal" | (string & {});
    type FontOpticalSizing = Globals | "auto" | "none";
    type FontSize<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "larger" | "smaller" | (string & {});
    type FontSizeAdjust = Globals | "none" | (number & {});
    type FontSmooth<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "always" | "auto" | "never";
    type FontStretch = Globals | DataType.FontStretchAbsolute;
    type FontStyle = Globals | "italic" | "normal" | "oblique" | (string & {});
    type FontSynthesis = Globals | "none" | "style" | "weight" | (string & {});
    type FontVariant = Globals | DataType.EastAsianVariantValues | "all-petite-caps" | "all-small-caps" | "common-ligatures" | "contextual" | "diagonal-fractions" | "discretionary-ligatures" | "full-width" | "historical-forms" | "historical-ligatures" | "lining-nums" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal" | "oldstyle-nums" | "ordinal" | "petite-caps" | "proportional-nums" | "proportional-width" | "ruby" | "slashed-zero" | "small-caps" | "stacked-fractions" | "tabular-nums" | "titling-caps" | "unicase" | (string & {});
    type FontVariantAlternates = Globals | "historical-forms" | "normal" | (string & {});
    type FontVariantCaps = Globals | "all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase";
    type FontVariantEastAsian = Globals | DataType.EastAsianVariantValues | "full-width" | "normal" | "proportional-width" | "ruby" | (string & {});
    type FontVariantLigatures = Globals | "common-ligatures" | "contextual" | "discretionary-ligatures" | "historical-ligatures" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal" | (string & {});
    type FontVariantNumeric = Globals | "diagonal-fractions" | "lining-nums" | "normal" | "oldstyle-nums" | "ordinal" | "proportional-nums" | "slashed-zero" | "stacked-fractions" | "tabular-nums" | (string & {});
    type FontVariantPosition = Globals | "normal" | "sub" | "super";
    type FontVariationSettings = Globals | "normal" | (string & {});
    type FontWeight = Globals | DataType.FontWeightAbsolute | "bolder" | "lighter";
    type ForcedColorAdjust = Globals | "auto" | "none";
    type Gap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
    type Grid = Globals | "none" | (string & {});
    type GridArea = Globals | DataType.GridLine | (string & {});
    type GridAutoColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | (string & {});
    type GridAutoFlow = Globals | "column" | "dense" | "row" | (string & {});
    type GridAutoRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | (string & {});
    type GridColumn = Globals | DataType.GridLine | (string & {});
    type GridColumnEnd = Globals | DataType.GridLine;
    type GridColumnGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type GridColumnStart = Globals | DataType.GridLine;
    type GridGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type GridRow = Globals | DataType.GridLine | (string & {});
    type GridRowEnd = Globals | DataType.GridLine;
    type GridRowGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type GridRowStart = Globals | DataType.GridLine;
    type GridTemplate = Globals | "none" | (string & {});
    type GridTemplateAreas = Globals | "none" | (string & {});
    type GridTemplateColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | "subgrid" | (string & {});
    type GridTemplateRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | "subgrid" | (string & {});
    type HangingPunctuation = Globals | "allow-end" | "first" | "force-end" | "last" | "none" | (string & {});
    type Height<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
    type Hyphens = Globals | "auto" | "manual" | "none";
    type ImageOrientation = Globals | "flip" | "from-image" | (string & {});
    type ImageRendering = Globals | "-moz-crisp-edges" | "-webkit-optimize-contrast" | "auto" | "crisp-edges" | "pixelated";
    type ImageResolution = Globals | "from-image" | (string & {});
    type ImeMode = Globals | "active" | "auto" | "disabled" | "inactive" | "normal";
    type InitialLetter = Globals | "normal" | (string & {}) | (number & {});
    type InlineSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
    type Inset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type InsetBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type InsetBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type InsetBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type InsetInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type InsetInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type InsetInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type Isolation = Globals | "auto" | "isolate";
    type JustifyContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "left" | "normal" | "right" | (string & {});
    type JustifyItems = Globals | DataType.SelfPosition | "baseline" | "left" | "legacy" | "normal" | "right" | "stretch" | (string & {});
    type JustifySelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "left" | "normal" | "right" | "stretch" | (string & {});
    type JustifyTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition | "left" | "normal" | "right" | (string & {});
    type Left<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type LetterSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal";
    type LineBreak = Globals | "anywhere" | "auto" | "loose" | "normal" | "strict";
    type LineClamp = Globals | "none" | (number & {});
    type LineHeight<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {}) | (number & {});
    type LineHeightStep<TLength = (string & {}) | 0> = Globals | TLength;
    type ListStyle = Globals | "inside" | "none" | "outside" | (string & {});
    type ListStyleImage = Globals | "none" | (string & {});
    type ListStylePosition = Globals | "inside" | "outside";
    type ListStyleType = Globals | "none" | (string & {});
    type Margin<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginBottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginLeft<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginRight<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type MarginTop<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type Mask<TLength = (string & {}) | 0> = Globals | DataType.MaskLayer<TLength> | (string & {});
    type MaskBorder = Globals | "alpha" | "luminance" | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {});
    type MaskBorderMode = Globals | "alpha" | "luminance";
    type MaskBorderOutset<TLength = (string & {}) | 0> = Globals | TLength | (string & {}) | (number & {});
    type MaskBorderRepeat = Globals | "repeat" | "round" | "space" | "stretch" | (string & {});
    type MaskBorderSlice = Globals | (string & {}) | (number & {});
    type MaskBorderSource = Globals | "none" | (string & {});
    type MaskBorderWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
    type MaskClip = Globals | DataType.GeometryBox | "no-clip" | (string & {});
    type MaskComposite = Globals | DataType.CompositingOperator | (string & {});
    type MaskImage = Globals | "none" | (string & {});
    type MaskMode = Globals | DataType.MaskingMode | (string & {});
    type MaskOrigin = Globals | DataType.Box | "margin-box" | (string & {});
    type MaskPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | (string & {});
    type MaskRepeat = Globals | DataType.RepeatStyle | (string & {});
    type MaskSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
    type MaskType = Globals | "alpha" | "luminance";
    type MathStyle = Globals | "compact" | "normal";
    type MaxBlockSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "fit-content" | "max-content" | "min-content" | "none" | (string & {});
    type MaxHeight<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "none" | (string & {});
    type MaxInlineSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "fit-content" | "max-content" | "min-content" | "none" | (string & {});
    type MaxLines = Globals | "none" | (number & {});
    type MaxWidth<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "none" | (string & {});
    type MinBlockSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
    type MinHeight<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "auto" | "fit-content" | "intrinsic" | "max-content" | "min-content" | (string & {});
    type MinInlineSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
    type MinWidth<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "auto" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "min-intrinsic" | (string & {});
    type MixBlendMode = Globals | DataType.BlendMode;
    type Offset<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | DataType.GeometryBox | "auto" | "none" | (string & {});
    type OffsetDistance<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type OffsetPath = Globals | DataType.GeometryBox | "none" | (string & {});
    type OffsetRotate = Globals | "auto" | "reverse" | (string & {});
    type ObjectFit = Globals | "contain" | "cover" | "fill" | "none" | "scale-down";
    type ObjectPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
    type OffsetAnchor<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto";
    type Opacity = Globals | (string & {}) | (number & {});
    type Order = Globals | (number & {});
    type Orphans = Globals | (number & {});
    type Outline<TLength = (string & {}) | 0> = Globals | DataType.Color | DataType.LineStyle | DataType.LineWidth<TLength> | "auto" | "invert" | (string & {});
    type OutlineColor = Globals | DataType.Color | "invert";
    type OutlineOffset<TLength = (string & {}) | 0> = Globals | TLength;
    type OutlineStyle = Globals | DataType.LineStyle | "auto" | (string & {});
    type OutlineWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
    type Overflow = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible" | (string & {});
    type OverflowAnchor = Globals | "auto" | "none";
    type OverflowBlock = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
    type OverflowClipBox = Globals | "content-box" | "padding-box";
    type OverflowClipMargin<TLength = (string & {}) | 0> = Globals | DataType.VisualBox | TLength | (string & {});
    type OverflowInline = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
    type OverflowWrap = Globals | "anywhere" | "break-word" | "normal";
    type OverflowX = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
    type OverflowY = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
    type OverscrollBehavior = Globals | "auto" | "contain" | "none" | (string & {});
    type OverscrollBehaviorBlock = Globals | "auto" | "contain" | "none";
    type OverscrollBehaviorInline = Globals | "auto" | "contain" | "none";
    type OverscrollBehaviorX = Globals | "auto" | "contain" | "none";
    type OverscrollBehaviorY = Globals | "auto" | "contain" | "none";
    type Padding<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingBlock<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingBlockStart<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingBottom<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingInline<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingInlineStart<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingLeft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingRight<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PaddingTop<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type PageBreakAfter = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
    type PageBreakBefore = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
    type PageBreakInside = Globals | "auto" | "avoid";
    type PaintOrder = Globals | "fill" | "markers" | "normal" | "stroke" | (string & {});
    type Perspective<TLength = (string & {}) | 0> = Globals | TLength | "none";
    type PerspectiveOrigin<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
    type PlaceContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
    type PlaceItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
    type PlaceSelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "normal" | "stretch" | (string & {});
    type PointerEvents = Globals | "all" | "auto" | "fill" | "inherit" | "none" | "painted" | "stroke" | "visible" | "visibleFill" | "visiblePainted" | "visibleStroke";
    type Position = Globals | "-webkit-sticky" | "absolute" | "fixed" | "relative" | "static" | "sticky";
    type Quotes = Globals | "auto" | "none" | (string & {});
    type Resize = Globals | "block" | "both" | "horizontal" | "inline" | "none" | "vertical";
    type Right<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type Rotate = Globals | "none" | (string & {});
    type RowGap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
    type RubyAlign = Globals | "center" | "space-around" | "space-between" | "start";
    type RubyMerge = Globals | "auto" | "collapse" | "separate";
    type RubyPosition = Globals | "alternate" | "over" | "under" | (string & {});
    type Scale = Globals | "none" | (string & {}) | (number & {});
    type ScrollBehavior = Globals | "auto" | "smooth";
    type ScrollMargin<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type ScrollMarginBlock<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type ScrollMarginBlockEnd<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginBlockStart<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginBottom<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginInline<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type ScrollMarginInlineEnd<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginInlineStart<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginLeft<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginRight<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollMarginTop<TLength = (string & {}) | 0> = Globals | TLength;
    type ScrollPadding<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingBottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingLeft<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingRight<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollPaddingTop<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type ScrollSnapAlign = Globals | "center" | "end" | "none" | "start" | (string & {});
    type ScrollSnapCoordinate<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "none" | (string & {});
    type ScrollSnapDestination<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
    type ScrollSnapPointsX = Globals | "none" | (string & {});
    type ScrollSnapPointsY = Globals | "none" | (string & {});
    type ScrollSnapStop = Globals | "always" | "normal";
    type ScrollSnapType = Globals | "block" | "both" | "inline" | "none" | "x" | "y" | (string & {});
    type ScrollSnapTypeX = Globals | "mandatory" | "none" | "proximity";
    type ScrollSnapTypeY = Globals | "mandatory" | "none" | "proximity";
    type ScrollbarColor = Globals | DataType.Color | "auto" | "dark" | "light";
    type ScrollbarGutter = Globals | "always" | "auto" | "stable" | (string & {});
    type MsScrollbarTrackColor = Globals | DataType.Color;
    type ScrollbarWidth = Globals | "auto" | "none" | "thin";
    type ShapeImageThreshold = Globals | (string & {}) | (number & {});
    type ShapeMargin<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type ShapeOutside = Globals | DataType.Box | "margin-box" | "none" | (string & {});
    type TabSize<TLength = (string & {}) | 0> = Globals | TLength | (number & {});
    type TableLayout = Globals | "auto" | "fixed";
    type TextAlign = Globals | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
    type TextAlignLast = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";
    type TextCombineUpright = Globals | "-ms-text-combine-horizontal" | "all" | "digits" | "none" | (string & {});
    type TextDecoration<TLength = (string & {}) | 0> = Globals | DataType.Color | TLength | "auto" | "blink" | "dashed" | "dotted" | "double" | "from-font" | "grammar-error" | "line-through" | "none" | "overline" | "solid" | "spelling-error" | "underline" | "wavy" | (string & {});
    type TextDecorationColor = Globals | DataType.Color;
    type TextDecorationLine = Globals | "blink" | "grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | (string & {});
    type TextDecorationSkip = Globals | "box-decoration" | "edges" | "leading-spaces" | "none" | "objects" | "spaces" | "trailing-spaces" | (string & {});
    type TextDecorationSkipInk = Globals | "all" | "auto" | "none";
    type TextDecorationStyle = Globals | "dashed" | "dotted" | "double" | "solid" | "wavy";
    type TextDecorationThickness<TLength = (string & {}) | 0> = Globals | TLength | "auto" | "from-font" | (string & {});
    type TextEmphasis = Globals | DataType.Color | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | (string & {});
    type TextEmphasisColor = Globals | DataType.Color;
    type TextEmphasisPosition = Globals | (string & {});
    type TextEmphasisStyle = Globals | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | (string & {});
    type TextIndent<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type TextJustify = Globals | "auto" | "inter-character" | "inter-word" | "none";
    type TextOrientation = Globals | "mixed" | "sideways" | "upright";
    type TextOverflow = Globals | "clip" | "ellipsis" | (string & {});
    type TextRendering = Globals | "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";
    type TextShadow = Globals | "none" | (string & {});
    type TextSizeAdjust = Globals | "auto" | "none" | (string & {});
    type TextTransform = Globals | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase";
    type TextUnderlineOffset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type TextUnderlinePosition = Globals | "auto" | "from-font" | "left" | "right" | "under" | (string & {});
    type Top<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
    type TouchAction = Globals | "-ms-manipulation" | "-ms-none" | "-ms-pinch-zoom" | "auto" | "manipulation" | "none" | "pan-down" | "pan-left" | "pan-right" | "pan-up" | "pan-x" | "pan-y" | "pinch-zoom" | (string & {});
    type Transform = Globals | "none" | (string & {});
    type TransformBox = Globals | "border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box";
    type TransformOrigin<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
    type TransformStyle = Globals | "flat" | "preserve-3d";
    type Transition<TTime = string & {}> = Globals | DataType.SingleTransition<TTime> | (string & {});
    type TransitionDelay<TTime = string & {}> = Globals | TTime | (string & {});
    type TransitionDuration<TTime = string & {}> = Globals | TTime | (string & {});
    type TransitionProperty = Globals | "all" | "none" | (string & {});
    type TransitionTimingFunction = Globals | DataType.EasingFunction | (string & {});
    type Translate<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
    type UnicodeBidi = Globals | "-moz-isolate" | "-moz-isolate-override" | "-moz-plaintext" | "-webkit-isolate" | "-webkit-isolate-override" | "-webkit-plaintext" | "bidi-override" | "embed" | "isolate" | "isolate-override" | "normal" | "plaintext";
    type UserSelect = Globals | "-moz-none" | "all" | "auto" | "contain" | "element" | "none" | "text";
    type VerticalAlign<TLength = (string & {}) | 0> = Globals | TLength | "baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top" | (string & {});
    type Visibility = Globals | "collapse" | "hidden" | "visible";
    type WhiteSpace = Globals | "-moz-pre-wrap" | "break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
    type Widows = Globals | (number & {});
    type Width<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "auto" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "min-intrinsic" | (string & {});
    type WillChange = Globals | DataType.AnimateableFeature | "auto" | (string & {});
    type WordBreak = Globals | "break-all" | "break-word" | "keep-all" | "normal";
    type WordSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
    type WordWrap = Globals | "break-word" | "normal";
    type WritingMode = Globals | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl";
    type ZIndex = Globals | "auto" | (number & {});
    type Zoom = Globals | "normal" | "reset" | (string & {}) | (number & {});
    type MozAppearance = Globals | "-moz-mac-unified-toolbar" | "-moz-win-borderless-glass" | "-moz-win-browsertabbar-toolbox" | "-moz-win-communications-toolbox" | "-moz-win-communicationstext" | "-moz-win-exclude-glass" | "-moz-win-glass" | "-moz-win-media-toolbox" | "-moz-win-mediatext" | "-moz-window-button-box" | "-moz-window-button-box-maximized" | "-moz-window-button-close" | "-moz-window-button-maximize" | "-moz-window-button-minimize" | "-moz-window-button-restore" | "-moz-window-frame-bottom" | "-moz-window-frame-left" | "-moz-window-frame-right" | "-moz-window-titlebar" | "-moz-window-titlebar-maximized" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "none" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scale-vertical" | "scalethumb-horizontal" | "scalethumb-vertical" | "scalethumbend" | "scalethumbstart" | "scalethumbtick" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "tabpanel" | "tabpanels" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview";
    type MozBinding = Globals | "none" | (string & {});
    type MozBorderBottomColors = Globals | DataType.Color | "none" | (string & {});
    type MozBorderLeftColors = Globals | DataType.Color | "none" | (string & {});
    type MozBorderRightColors = Globals | DataType.Color | "none" | (string & {});
    type MozBorderTopColors = Globals | DataType.Color | "none" | (string & {});
    type MozContextProperties = Globals | "fill" | "fill-opacity" | "none" | "stroke" | "stroke-opacity" | (string & {});
    type MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
    type MozForceBrokenImageIcon = Globals | (number & {});
    type MozImageRegion = Globals | "auto" | (string & {});
    type MozOrient = Globals | "block" | "horizontal" | "inline" | "vertical";
    type MozOutlineRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type MozOutlineRadiusBottomleft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type MozOutlineRadiusBottomright<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type MozOutlineRadiusTopleft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type MozOutlineRadiusTopright<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type MozStackSizing = Globals | "ignore" | "stretch-to-fit";
    type MozTextBlink = Globals | "blink" | "none";
    type MozUserFocus = Globals | "ignore" | "none" | "normal" | "select-after" | "select-all" | "select-before" | "select-menu" | "select-same";
    type MozUserInput = Globals | "auto" | "disabled" | "enabled" | "none";
    type MozUserModify = Globals | "read-only" | "read-write" | "write-only";
    type MozWindowDragging = Globals | "drag" | "no-drag";
    type MozWindowShadow = Globals | "default" | "menu" | "none" | "sheet" | "tooltip";
    type MsAccelerator = Globals | "false" | "true";
    type MsBlockProgression = Globals | "bt" | "lr" | "rl" | "tb";
    type MsContentZoomChaining = Globals | "chained" | "none";
    type MsContentZoomLimit = Globals | (string & {});
    type MsContentZoomLimitMax = Globals | (string & {});
    type MsContentZoomLimitMin = Globals | (string & {});
    type MsContentZoomSnap = Globals | "mandatory" | "none" | "proximity" | (string & {});
    type MsContentZoomSnapPoints = Globals | (string & {});
    type MsContentZoomSnapType = Globals | "mandatory" | "none" | "proximity";
    type MsContentZooming = Globals | "none" | "zoom";
    type MsFilter = Globals | (string & {});
    type MsFlowFrom = Globals | "none" | (string & {});
    type MsFlowInto = Globals | "none" | (string & {});
    type MsGridColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | (string & {});
    type MsGridRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | (string & {});
    type MsHighContrastAdjust = Globals | "auto" | "none";
    type MsHyphenateLimitChars = Globals | "auto" | (string & {}) | (number & {});
    type MsHyphenateLimitLines = Globals | "no-limit" | (number & {});
    type MsHyphenateLimitZone<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type MsImeAlign = Globals | "after" | "auto";
    type MsOverflowStyle = Globals | "-ms-autohiding-scrollbar" | "auto" | "none" | "scrollbar";
    type MsScrollChaining = Globals | "chained" | "none";
    type MsScrollLimit = Globals | (string & {});
    type MsScrollLimitXMax<TLength = (string & {}) | 0> = Globals | TLength | "auto";
    type MsScrollLimitXMin<TLength = (string & {}) | 0> = Globals | TLength;
    type MsScrollLimitYMax<TLength = (string & {}) | 0> = Globals | TLength | "auto";
    type MsScrollLimitYMin<TLength = (string & {}) | 0> = Globals | TLength;
    type MsScrollRails = Globals | "none" | "railed";
    type MsScrollSnapPointsX = Globals | (string & {});
    type MsScrollSnapPointsY = Globals | (string & {});
    type MsScrollSnapType = Globals | "mandatory" | "none" | "proximity";
    type MsScrollSnapX = Globals | (string & {});
    type MsScrollSnapY = Globals | (string & {});
    type MsScrollTranslation = Globals | "none" | "vertical-to-horizontal";
    type MsScrollbar3dlightColor = Globals | DataType.Color;
    type MsScrollbarArrowColor = Globals | DataType.Color;
    type MsScrollbarBaseColor = Globals | DataType.Color;
    type MsScrollbarDarkshadowColor = Globals | DataType.Color;
    type MsScrollbarFaceColor = Globals | DataType.Color;
    type MsScrollbarHighlightColor = Globals | DataType.Color;
    type MsScrollbarShadowColor = Globals | DataType.Color;
    type MsTextAutospace = Globals | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space" | "none";
    type MsTouchSelect = Globals | "grippers" | "none";
    type MsUserSelect = Globals | "element" | "none" | "text";
    type MsWrapFlow = Globals | "auto" | "both" | "clear" | "end" | "maximum" | "start";
    type MsWrapMargin<TLength = (string & {}) | 0> = Globals | TLength;
    type MsWrapThrough = Globals | "none" | "wrap";
    type WebkitAppearance = Globals | "-apple-pay-button" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "none" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield";
    type WebkitBorderBefore<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
    type WebkitBorderBeforeColor = Globals | DataType.Color;
    type WebkitBorderBeforeStyle = Globals | DataType.LineStyle | (string & {});
    type WebkitBorderBeforeWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
    type WebkitBoxReflect<TLength = (string & {}) | 0> = Globals | TLength | "above" | "below" | "left" | "right" | (string & {});
    type WebkitLineClamp = Globals | "none" | (number & {});
    type WebkitMask<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | DataType.RepeatStyle | DataType.Box | "border" | "content" | "none" | "padding" | "text" | (string & {});
    type WebkitMaskAttachment = Globals | DataType.Attachment | (string & {});
    type WebkitMaskClip = Globals | DataType.Box | "border" | "content" | "padding" | "text" | (string & {});
    type WebkitMaskComposite = Globals | DataType.CompositeStyle | (string & {});
    type WebkitMaskImage = Globals | "none" | (string & {});
    type WebkitMaskOrigin = Globals | DataType.Box | "border" | "content" | "padding" | (string & {});
    type WebkitMaskPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | (string & {});
    type WebkitMaskPositionX<TLength = (string & {}) | 0> = Globals | TLength | "center" | "left" | "right" | (string & {});
    type WebkitMaskPositionY<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "top" | (string & {});
    type WebkitMaskRepeat = Globals | DataType.RepeatStyle | (string & {});
    type WebkitMaskRepeatX = Globals | "no-repeat" | "repeat" | "round" | "space";
    type WebkitMaskRepeatY = Globals | "no-repeat" | "repeat" | "round" | "space";
    type WebkitMaskSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
    type WebkitOverflowScrolling = Globals | "auto" | "touch";
    type WebkitTapHighlightColor = Globals | DataType.Color;
    type WebkitTextFillColor = Globals | DataType.Color;
    type WebkitTextStroke<TLength = (string & {}) | 0> = Globals | DataType.Color | TLength | (string & {});
    type WebkitTextStrokeColor = Globals | DataType.Color;
    type WebkitTextStrokeWidth<TLength = (string & {}) | 0> = Globals | TLength;
    type WebkitTouchCallout = Globals | "default" | "none";
    type WebkitUserModify = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
    type AlignmentBaseline = Globals | "after-edge" | "alphabetic" | "auto" | "baseline" | "before-edge" | "central" | "hanging" | "ideographic" | "mathematical" | "middle" | "text-after-edge" | "text-before-edge";
    type BaselineShift<TLength = (string & {}) | 0> = Globals | TLength | "baseline" | "sub" | "super" | (string & {});
    type ClipRule = Globals | "evenodd" | "nonzero";
    type ColorInterpolation = Globals | "auto" | "linearRGB" | "sRGB";
    type ColorRendering = Globals | "auto" | "optimizeQuality" | "optimizeSpeed";
    type DominantBaseline = Globals | "alphabetic" | "auto" | "central" | "hanging" | "ideographic" | "mathematical" | "middle" | "no-change" | "reset-size" | "text-after-edge" | "text-before-edge" | "use-script";
    type Fill = Globals | DataType.Paint;
    type FillOpacity = Globals | (number & {});
    type FillRule = Globals | "evenodd" | "nonzero";
    type FloodColor = Globals | DataType.Color | "currentColor";
    type FloodOpacity = Globals | (number & {});
    type GlyphOrientationVertical = Globals | "auto" | (string & {}) | (number & {});
    type LightingColor = Globals | DataType.Color | "currentColor";
    type Marker = Globals | "none" | (string & {});
    type MarkerEnd = Globals | "none" | (string & {});
    type MarkerMid = Globals | "none" | (string & {});
    type MarkerStart = Globals | "none" | (string & {});
    type ShapeRendering = Globals | "auto" | "crispEdges" | "geometricPrecision" | "optimizeSpeed";
    type StopColor = Globals | DataType.Color | "currentColor";
    type StopOpacity = Globals | (number & {});
    type Stroke = Globals | DataType.Paint;
    type StrokeDasharray<TLength = (string & {}) | 0> = Globals | DataType.Dasharray<TLength> | "none";
    type StrokeDashoffset<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type StrokeLinecap = Globals | "butt" | "round" | "square";
    type StrokeLinejoin = Globals | "bevel" | "miter" | "round";
    type StrokeMiterlimit = Globals | (number & {});
    type StrokeOpacity = Globals | (number & {});
    type StrokeWidth<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
    type TextAnchor = Globals | "end" | "middle" | "start";
    type VectorEffect = Globals | "non-scaling-stroke" | "none";
}
export declare namespace AtRule {
    export interface CounterStyle<TLength = (string & {}) | 0, TTime = string & {}> {
        additiveSymbols?: string;
        fallback?: string;
        negative?: string;
        pad?: string;
        prefix?: string;
        range?: Range;
        speakAs?: SpeakAs;
        suffix?: string;
        symbols?: string;
        system?: System;
    }
    export interface CounterStyleHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
        "additive-symbols"?: string;
        fallback?: string;
        negative?: string;
        pad?: string;
        prefix?: string;
        range?: Range;
        "speak-as"?: SpeakAs;
        suffix?: string;
        symbols?: string;
        system?: System;
    }
    export type CounterStyleFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof CounterStyle<TLength, TTime>]: CounterStyle<TLength, TTime>[P] | CounterStyle<TLength, TTime>[P][];
    };
    export type CounterStyleHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof CounterStyleHyphen<TLength, TTime>]: CounterStyleHyphen<TLength, TTime>[P] | CounterStyleHyphen<TLength, TTime>[P][];
    };
    export interface FontFace<TLength = (string & {}) | 0, TTime = string & {}> {
        MozFontFeatureSettings?: FontFeatureSettings;
        fontDisplay?: FontDisplay;
        fontFamily?: string;
        fontFeatureSettings?: FontFeatureSettings;
        fontStretch?: FontStretch;
        fontStyle?: FontStyle;
        fontVariant?: FontVariant;
        fontVariationSettings?: FontVariationSettings;
        fontWeight?: FontWeight;
        src?: string;
        unicodeRange?: string;
    }
    export interface FontFaceHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
        "-moz-font-feature-settings"?: FontFeatureSettings;
        "font-display"?: FontDisplay;
        "font-family"?: string;
        "font-feature-settings"?: FontFeatureSettings;
        "font-stretch"?: FontStretch;
        "font-style"?: FontStyle;
        "font-variant"?: FontVariant;
        "font-variation-settings"?: FontVariationSettings;
        "font-weight"?: FontWeight;
        src?: string;
        "unicode-range"?: string;
    }
    export type FontFaceFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof FontFace<TLength, TTime>]: FontFace<TLength, TTime>[P] | FontFace<TLength, TTime>[P][];
    };
    export type FontFaceHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof FontFaceHyphen<TLength, TTime>]: FontFaceHyphen<TLength, TTime>[P] | FontFaceHyphen<TLength, TTime>[P][];
    };
    export interface Page<TLength = (string & {}) | 0, TTime = string & {}> {
        size?: Size<TLength>;
    }
    export interface PageHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
        size?: Size<TLength>;
    }
    export type PageFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof Page<TLength, TTime>]: Page<TLength, TTime>[P] | Page<TLength, TTime>[P][];
    };
    export type PageHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof PageHyphen<TLength, TTime>]: PageHyphen<TLength, TTime>[P] | PageHyphen<TLength, TTime>[P][];
    };
    export interface Property<TLength = (string & {}) | 0, TTime = string & {}> {
        inherits?: Inherits;
        initialValue?: string;
        syntax?: string;
    }
    export interface PropertyHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
        inherits?: Inherits;
        "initial-value"?: string;
        syntax?: string;
    }
    export type PropertyFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof Property<TLength, TTime>]: Property<TLength, TTime>[P] | Property<TLength, TTime>[P][];
    };
    export type PropertyHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof PropertyHyphen<TLength, TTime>]: PropertyHyphen<TLength, TTime>[P] | PropertyHyphen<TLength, TTime>[P][];
    };
    export interface Viewport<TLength = (string & {}) | 0, TTime = string & {}> {
        height?: Height<TLength>;
        maxHeight?: MaxHeight<TLength>;
        maxWidth?: MaxWidth<TLength>;
        maxZoom?: MaxZoom;
        minHeight?: MinHeight<TLength>;
        minWidth?: MinWidth<TLength>;
        minZoom?: MinZoom;
        orientation?: Orientation;
        userZoom?: UserZoom;
        viewportFit?: ViewportFit;
        width?: Width<TLength>;
        zoom?: Zoom;
    }
    export interface ViewportHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
        height?: Height<TLength>;
        "max-height"?: MaxHeight<TLength>;
        "max-width"?: MaxWidth<TLength>;
        "max-zoom"?: MaxZoom;
        "min-height"?: MinHeight<TLength>;
        "min-width"?: MinWidth<TLength>;
        "min-zoom"?: MinZoom;
        orientation?: Orientation;
        "user-zoom"?: UserZoom;
        "viewport-fit"?: ViewportFit;
        width?: Width<TLength>;
        zoom?: Zoom;
    }
    export type ViewportFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof Viewport<TLength, TTime>]: Viewport<TLength, TTime>[P] | Viewport<TLength, TTime>[P][];
    };
    export type ViewportHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = {
        [P in keyof ViewportHyphen<TLength, TTime>]: ViewportHyphen<TLength, TTime>[P] | ViewportHyphen<TLength, TTime>[P][];
    };
    type Range = "auto" | "infinite" | (string & {}) | (number & {});
    type SpeakAs = "auto" | "bullets" | "numbers" | "spell-out" | "words" | (string & {});
    type System = "additive" | "alphabetic" | "cyclic" | "fixed" | "numeric" | "symbolic" | (string & {});
    type FontFeatureSettings = "normal" | (string & {});
    type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
    type FontStretch = DataType.FontStretchAbsolute | (string & {});
    type FontStyle = "italic" | "normal" | "oblique" | (string & {});
    type FontVariant = DataType.EastAsianVariantValues | "all-petite-caps" | "all-small-caps" | "common-ligatures" | "contextual" | "diagonal-fractions" | "discretionary-ligatures" | "full-width" | "historical-forms" | "historical-ligatures" | "lining-nums" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal" | "oldstyle-nums" | "ordinal" | "petite-caps" | "proportional-nums" | "proportional-width" | "ruby" | "slashed-zero" | "small-caps" | "stacked-fractions" | "tabular-nums" | "titling-caps" | "unicase" | (string & {});
    type FontVariationSettings = "normal" | (string & {});
    type FontWeight = DataType.FontWeightAbsolute | (string & {});
    type Size<TLength> = DataType.PageSize | TLength | "auto" | "landscape" | "portrait" | (string & {});
    type Inherits = "false" | "true";
    type Height<TLength> = DataType.ViewportLength<TLength> | (string & {});
    type MaxHeight<TLength> = DataType.ViewportLength<TLength>;
    type MaxWidth<TLength> = DataType.ViewportLength<TLength>;
    type MaxZoom = "auto" | (string & {}) | (number & {});
    type MinHeight<TLength> = DataType.ViewportLength<TLength>;
    type MinWidth<TLength> = DataType.ViewportLength<TLength>;
    type MinZoom = "auto" | (string & {}) | (number & {});
    type Orientation = "auto" | "landscape" | "portrait";
    type UserZoom = "fixed" | "zoom";
    type ViewportFit = "auto" | "contain" | "cover";
    type Width<TLength> = DataType.ViewportLength<TLength> | (string & {});
    type Zoom = "auto" | (string & {}) | (number & {});
    export {};
}
declare namespace DataType {
    type AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
    type AnimateableFeature = "contents" | "scroll-position" | (string & {});
    type Attachment = "fixed" | "local" | "scroll";
    type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
    type BgSize<TLength> = TLength | "auto" | "contain" | "cover" | (string & {});
    type BlendMode = "color" | "color-burn" | "color-dodge" | "darken" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "luminosity" | "multiply" | "normal" | "overlay" | "saturation" | "screen" | "soft-light";
    type Box = "border-box" | "content-box" | "padding-box";
    type Color = NamedColor | DeprecatedSystemColor | "currentcolor" | (string & {});
    type CompatAuto = "button" | "checkbox" | "listbox" | "menulist" | "meter" | "progress-bar" | "push-button" | "radio" | "searchfield" | "slider-horizontal" | "square-button" | "textarea";
    type CompositeStyle = "clear" | "copy" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
    type CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
    type ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
    type ContentList = Quote | "contents" | (string & {});
    type ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
    type CubicBezierTimingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out" | (string & {});
    type Dasharray<TLength> = TLength | (string & {}) | (number & {});
    type DeprecatedSystemColor = "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText";
    type DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
    type DisplayInternal = "ruby-base" | "ruby-base-container" | "ruby-text" | "ruby-text-container" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group";
    type DisplayLegacy = "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table";
    type DisplayOutside = "block" | "inline" | "run-in";
    type EasingFunction = CubicBezierTimingFunction | StepTimingFunction | "linear";
    type EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
    type FinalBgLayer<TLength> = Color | BgPosition<TLength> | RepeatStyle | Attachment | Box | "none" | (string & {});
    type FontStretchAbsolute = "condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded" | (string & {});
    type FontWeightAbsolute = "bold" | "normal" | (number & {});
    type GenericFamily = "cursive" | "fantasy" | "monospace" | "sans-serif" | "serif";
    type GeometryBox = Box | "fill-box" | "margin-box" | "stroke-box" | "view-box";
    type GridLine = "auto" | (string & {}) | (number & {});
    type LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
    type LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
    type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none" | (string & {});
    type MaskingMode = "alpha" | "luminance" | "match-source";
    type NamedColor = "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen";
    type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
    type Paint = Color | "child" | "context-fill" | "context-stroke" | "none" | (string & {});
    type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
    type Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
    type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | (string & {});
    type SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
    type SingleAnimation<TTime> = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | TTime | "infinite" | "none" | "paused" | "running" | (string & {}) | (number & {});
    type SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
    type SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
    type SingleTransition<TTime> = EasingFunction | TTime | "all" | "none" | (string & {});
    type StepTimingFunction = "step-end" | "step-start" | (string & {});
    type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | (string & {});
    type ViewportLength<TLength> = TLength | "auto" | (string & {});
    type VisualBox = "border-box" | "content-box" | "padding-box";
}
