import { HTMLProps } from "react";
export declare function kebabCaseToCamelCase(str: string): string;
/**
* Converts a CSS style string to an object
* that can be passed to a React component's
* `style` prop.
*/
export declare function cssToStyles(css: string): Record;
/**
* Merges two sets of React props. Class names
* will be concatenated and style objects
* will be merged.
*/
export declare function mergeReactProps(a: HTMLProps, b: HTMLProps): {
className: string;
style: {
accentColor?: import("csstype").Property.AccentColor | undefined;
alignContent?: import("csstype").Property.AlignContent | undefined;
alignItems?: import("csstype").Property.AlignItems | undefined;
alignSelf?: import("csstype").Property.AlignSelf | undefined;
alignTracks?: import("csstype").Property.AlignTracks | undefined;
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
animationDelay?: import("csstype").Property.AnimationDelay | undefined;
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
animationDuration?: import("csstype").Property.AnimationDuration | undefined;
animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
animationName?: import("csstype").Property.AnimationName | undefined;
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
appearance?: import("csstype").Property.Appearance | undefined;
aspectRatio?: import("csstype").Property.AspectRatio | undefined;
backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
backgroundPositionX?: string | number | undefined;
backgroundPositionY?: string | number | undefined;
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
backgroundSize?: string | number | undefined;
blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
blockSize?: string | number | undefined;
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth | undefined;
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth | undefined;
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
borderBlockWidth?: import("csstype").Property.BorderBlockWidth | undefined;
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
borderBottomLeftRadius?: string | number | undefined;
borderBottomRightRadius?: string | number | undefined;
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
borderBottomWidth?: import("csstype").Property.BorderBottomWidth | undefined;
borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
borderEndEndRadius?: string | number | undefined;
borderEndStartRadius?: string | number | undefined;
borderImageOutset?: string | number | undefined;
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
borderImageWidth?: string | number | undefined;
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth | undefined;
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth | undefined;
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
borderInlineWidth?: import("csstype").Property.BorderInlineWidth | undefined;
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
borderLeftWidth?: import("csstype").Property.BorderLeftWidth | undefined;
borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
borderRightWidth?: import("csstype").Property.BorderRightWidth | undefined;
borderSpacing?: string | number | undefined;
borderStartEndRadius?: string | number | undefined;
borderStartStartRadius?: string | number | undefined;
borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
borderTopLeftRadius?: string | number | undefined;
borderTopRightRadius?: string | number | undefined;
borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
borderTopWidth?: import("csstype").Property.BorderTopWidth | undefined;
bottom?: string | number | undefined;
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
boxShadow?: import("csstype").Property.BoxShadow | undefined;
boxSizing?: import("csstype").Property.BoxSizing | undefined;
breakAfter?: import("csstype").Property.BreakAfter | undefined;
breakBefore?: import("csstype").Property.BreakBefore | undefined;
breakInside?: import("csstype").Property.BreakInside | undefined;
captionSide?: import("csstype").Property.CaptionSide | undefined;
caretColor?: import("csstype").Property.CaretColor | undefined;
clear?: import("csstype").Property.Clear | undefined;
clipPath?: import("csstype").Property.ClipPath | undefined;
color?: import("csstype").Property.Color | undefined;
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
colorScheme?: import("csstype").Property.ColorScheme | undefined;
columnCount?: import("csstype").Property.ColumnCount | undefined;
columnFill?: import("csstype").Property.ColumnFill | undefined;
columnGap?: string | number | undefined;
columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
columnRuleWidth?: string | number | undefined;
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
columnWidth?: import("csstype").Property.ColumnWidth | undefined;
contain?: import("csstype").Property.Contain | undefined;
content?: import("csstype").Property.Content | undefined;
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
counterReset?: import("csstype").Property.CounterReset | undefined;
counterSet?: import("csstype").Property.CounterSet | undefined;
cursor?: import("csstype").Property.Cursor | undefined;
direction?: import("csstype").Property.Direction | undefined;
display?: import("csstype").Property.Display | undefined;
emptyCells?: import("csstype").Property.EmptyCells | undefined;
filter?: import("csstype").Property.Filter | undefined;
flexBasis?: string | number | undefined;
flexDirection?: import("csstype").Property.FlexDirection | undefined;
flexGrow?: import("csstype").Property.FlexGrow | undefined;
flexShrink?: import("csstype").Property.FlexShrink | undefined;
flexWrap?: import("csstype").Property.FlexWrap | undefined;
float?: import("csstype").Property.Float | undefined;
fontFamily?: import("csstype").Property.FontFamily | undefined;
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
fontKerning?: import("csstype").Property.FontKerning | undefined;
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
fontSize?: string | number | undefined;
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
fontSmooth?: import("csstype").Property.FontSmooth | undefined;
fontStretch?: import("csstype").Property.FontStretch | undefined;
fontStyle?: import("csstype").Property.FontStyle | undefined;
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
fontVariant?: import("csstype").Property.FontVariant | undefined;
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
fontWeight?: import("csstype").Property.FontWeight | undefined;
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
gridAutoColumns?: string | number | undefined;
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
gridAutoRows?: string | number | undefined;
gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
gridRowStart?: import("csstype").Property.GridRowStart | undefined;
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
gridTemplateColumns?: string | number | undefined;
gridTemplateRows?: string | number | undefined;
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
height?: string | number | undefined;
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
hyphens?: import("csstype").Property.Hyphens | undefined;
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
imageRendering?: import("csstype").Property.ImageRendering | undefined;
imageResolution?: import("csstype").Property.ImageResolution | undefined;
initialLetter?: import("csstype").Property.InitialLetter | undefined;
inlineSize?: string | number | undefined;
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
inset?: string | number | undefined;
insetBlock?: string | number | undefined;
insetBlockEnd?: string | number | undefined;
insetBlockStart?: string | number | undefined;
insetInline?: string | number | undefined;
insetInlineEnd?: string | number | undefined;
insetInlineStart?: string | number | undefined;
isolation?: import("csstype").Property.Isolation | undefined;
justifyContent?: import("csstype").Property.JustifyContent | undefined;
justifyItems?: import("csstype").Property.JustifyItems | undefined;
justifySelf?: import("csstype").Property.JustifySelf | undefined;
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
left?: string | number | undefined;
letterSpacing?: import("csstype").Property.LetterSpacing | undefined;
lineBreak?: import("csstype").Property.LineBreak | undefined;
lineHeight?: string | number | undefined;
lineHeightStep?: import("csstype").Property.LineHeightStep | undefined;
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
listStyleType?: import("csstype").Property.ListStyleType | undefined;
marginBlock?: string | number | undefined;
marginBlockEnd?: string | number | undefined;
marginBlockStart?: string | number | undefined;
marginBottom?: string | number | undefined;
marginInline?: string | number | undefined;
marginInlineEnd?: string | number | undefined;
marginInlineStart?: string | number | undefined;
marginLeft?: string | number | undefined;
marginRight?: string | number | undefined;
marginTop?: string | number | undefined;
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
maskBorderOutset?: string | number | undefined;
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
maskBorderWidth?: string | number | undefined;
maskClip?: import("csstype").Property.MaskClip | undefined;
maskComposite?: import("csstype").Property.MaskComposite | undefined;
maskImage?: import("csstype").Property.MaskImage | undefined;
maskMode?: import("csstype").Property.MaskMode | undefined;
maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
maskPosition?: string | number | undefined;
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
maskSize?: string | number | undefined;
maskType?: import("csstype").Property.MaskType | undefined;
mathDepth?: import("csstype").Property.MathDepth | undefined;
mathShift?: import("csstype").Property.MathShift | undefined;
mathStyle?: import("csstype").Property.MathStyle | undefined;
maxBlockSize?: string | number | undefined;
maxHeight?: string | number | undefined;
maxInlineSize?: string | number | undefined;
maxLines?: import("csstype").Property.MaxLines | undefined;
maxWidth?: string | number | undefined;
minBlockSize?: string | number | undefined;
minHeight?: string | number | undefined;
minInlineSize?: string | number | undefined;
minWidth?: string | number | undefined;
mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
motionDistance?: string | number | undefined;
motionPath?: import("csstype").Property.OffsetPath | undefined;
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
objectFit?: import("csstype").Property.ObjectFit | undefined;
objectPosition?: string | number | undefined;
offsetAnchor?: string | number | undefined;
offsetDistance?: string | number | undefined;
offsetPath?: import("csstype").Property.OffsetPath | undefined;
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
opacity?: import("csstype").Property.Opacity | undefined;
order?: import("csstype").Property.Order | undefined;
orphans?: import("csstype").Property.Orphans | undefined;
outlineColor?: import("csstype").Property.OutlineColor | undefined;
outlineOffset?: import("csstype").Property.OutlineOffset | undefined;
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
outlineWidth?: import("csstype").Property.OutlineWidth | undefined;
overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
overflowClipMargin?: string | number | undefined;
overflowInline?: import("csstype").Property.OverflowInline | undefined;
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
overflowX?: import("csstype").Property.OverflowX | undefined;
overflowY?: import("csstype").Property.OverflowY | undefined;
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
paddingBlock?: string | number | undefined;
paddingBlockEnd?: string | number | undefined;
paddingBlockStart?: string | number | undefined;
paddingBottom?: string | number | undefined;
paddingInline?: string | number | undefined;
paddingInlineEnd?: string | number | undefined;
paddingInlineStart?: string | number | undefined;
paddingLeft?: string | number | undefined;
paddingRight?: string | number | undefined;
paddingTop?: string | number | undefined;
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
paintOrder?: import("csstype").Property.PaintOrder | undefined;
perspective?: import("csstype").Property.Perspective | undefined;
perspectiveOrigin?: string | number | undefined;
placeContent?: import("csstype").Property.PlaceContent | undefined;
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
position?: import("csstype").Property.Position | undefined;
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
quotes?: import("csstype").Property.Quotes | undefined;
resize?: import("csstype").Property.Resize | undefined;
right?: string | number | undefined;
rotate?: import("csstype").Property.Rotate | undefined;
rowGap?: string | number | undefined;
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
scale?: import("csstype").Property.Scale | undefined;
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
scrollMargin?: string | number | undefined;
scrollMarginBlock?: string | number | undefined;
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd | undefined;
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart | undefined;
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom | undefined;
scrollMarginInline?: string | number | undefined;
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd | undefined;
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart | undefined;
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft | undefined;
scrollMarginRight?: import("csstype").Property.ScrollMarginRight | undefined;
scrollMarginTop?: import("csstype").Property.ScrollMarginTop | undefined;
scrollPadding?: string | number | undefined;
scrollPaddingBlock?: string | number | undefined;
scrollPaddingBlockEnd?: string | number | undefined;
scrollPaddingBlockStart?: string | number | undefined;
scrollPaddingBottom?: string | number | undefined;
scrollPaddingInline?: string | number | undefined;
scrollPaddingInlineEnd?: string | number | undefined;
scrollPaddingInlineStart?: string | number | undefined;
scrollPaddingLeft?: string | number | undefined;
scrollPaddingRight?: string | number | undefined;
scrollPaddingTop?: string | number | undefined;
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
scrollSnapMargin?: string | number | undefined;
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom | undefined;
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft | undefined;
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight | undefined;
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop | undefined;
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
shapeMargin?: string | number | undefined;
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
tabSize?: string | number | undefined;
tableLayout?: import("csstype").Property.TableLayout | undefined;
textAlign?: import("csstype").Property.TextAlign | undefined;
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
textDecorationThickness?: string | number | undefined;
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
textIndent?: string | number | undefined;
textJustify?: import("csstype").Property.TextJustify | undefined;
textOrientation?: import("csstype").Property.TextOrientation | undefined;
textOverflow?: import("csstype").Property.TextOverflow | undefined;
textRendering?: import("csstype").Property.TextRendering | undefined;
textShadow?: import("csstype").Property.TextShadow | undefined;
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
textTransform?: import("csstype").Property.TextTransform | undefined;
textUnderlineOffset?: string | number | undefined;
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
top?: string | number | undefined;
touchAction?: import("csstype").Property.TouchAction | undefined;
transform?: import("csstype").Property.Transform | undefined;
transformBox?: import("csstype").Property.TransformBox | undefined;
transformOrigin?: string | number | undefined;
transformStyle?: import("csstype").Property.TransformStyle | undefined;
transitionDelay?: import("csstype").Property.TransitionDelay | undefined;
transitionDuration?: import("csstype").Property.TransitionDuration | undefined;
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
translate?: string | number | undefined;
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
userSelect?: import("csstype").Property.UserSelect | undefined;
verticalAlign?: string | number | undefined;
visibility?: import("csstype").Property.Visibility | undefined;
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
widows?: import("csstype").Property.Widows | undefined;
width?: string | number | undefined;
willChange?: import("csstype").Property.WillChange | undefined;
wordBreak?: import("csstype").Property.WordBreak | undefined;
wordSpacing?: import("csstype").Property.WordSpacing | undefined;
wordWrap?: import("csstype").Property.WordWrap | undefined;
writingMode?: import("csstype").Property.WritingMode | undefined;
zIndex?: import("csstype").Property.ZIndex | undefined;
zoom?: import("csstype").Property.Zoom | undefined;
all?: import("csstype").Globals | undefined;
animation?: import("csstype").Property.Animation | undefined;
background?: string | number | undefined;
backgroundPosition?: string | number | undefined;
border?: string | number | undefined;
borderBlock?: string | number | undefined;
borderBlockEnd?: string | number | undefined;
borderBlockStart?: string | number | undefined;
borderBottom?: string | number | undefined;
borderColor?: import("csstype").Property.BorderColor | undefined;
borderImage?: import("csstype").Property.BorderImage | undefined;
borderInline?: string | number | undefined;
borderInlineEnd?: string | number | undefined;
borderInlineStart?: string | number | undefined;
borderLeft?: string | number | undefined;
borderRadius?: string | number | undefined;
borderRight?: string | number | undefined;
borderStyle?: import("csstype").Property.BorderStyle | undefined;
borderTop?: string | number | undefined;
borderWidth?: string | number | undefined;
columnRule?: string | number | undefined;
columns?: string | number | undefined;
flex?: string | number | undefined;
flexFlow?: import("csstype").Property.FlexFlow | undefined;
font?: import("csstype").Property.Font | undefined;
gap?: string | number | undefined;
grid?: import("csstype").Property.Grid | undefined;
gridArea?: import("csstype").Property.GridArea | undefined;
gridColumn?: import("csstype").Property.GridColumn | undefined;
gridRow?: import("csstype").Property.GridRow | undefined;
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
lineClamp?: import("csstype").Property.LineClamp | undefined;
listStyle?: import("csstype").Property.ListStyle | undefined;
margin?: string | number | undefined;
mask?: string | number | undefined;
maskBorder?: import("csstype").Property.MaskBorder | undefined;
motion?: string | number | undefined;
offset?: string | number | undefined;
outline?: string | number | undefined;
overflow?: import("csstype").Property.Overflow | undefined;
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
padding?: string | number | undefined;
placeItems?: import("csstype").Property.PlaceItems | undefined;
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
textDecoration?: string | number | undefined;
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
transition?: import("csstype").Property.Transition | undefined;
MozAnimationDelay?: import("csstype").Property.AnimationDelay | undefined;
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
MozAnimationDuration?: import("csstype").Property.AnimationDuration | undefined;
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
MozAnimationName?: import("csstype").Property.AnimationName | undefined;
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth | undefined;
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
MozColumnRuleWidth?: string | number | undefined;
MozColumnWidth?: import("csstype").Property.ColumnWidth | undefined;
MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
MozHyphens?: import("csstype").Property.Hyphens | undefined;
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
MozMarginEnd?: string | number | undefined;
MozMarginStart?: string | number | undefined;
MozOrient?: import("csstype").Property.MozOrient | undefined;
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth | undefined;
MozPaddingEnd?: string | number | undefined;
MozPaddingStart?: string | number | undefined;
MozPerspective?: import("csstype").Property.Perspective | undefined;
MozPerspectiveOrigin?: string | number | undefined;
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
MozTabSize?: string | number | undefined;
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
MozTransformOrigin?: string | number | undefined;
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
MozTransitionDelay?: import("csstype").Property.TransitionDelay | undefined;
MozTransitionDuration?: import("csstype").Property.TransitionDuration | undefined;
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
msFilter?: import("csstype").Property.MsFilter | undefined;
msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
msGridColumns?: string | number | undefined;
msGridRows?: string | number | undefined;
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
msHyphenateLimitZone?: string | number | undefined;
msHyphens?: import("csstype").Property.Hyphens | undefined;
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
msLineBreak?: import("csstype").Property.LineBreak | undefined;
msOrder?: import("csstype").Property.Order | undefined;
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
msOverflowX?: import("csstype").Property.OverflowX | undefined;
msOverflowY?: import("csstype").Property.OverflowY | undefined;
msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax | undefined;
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin | undefined;
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax | undefined;
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin | undefined;
msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
msTouchAction?: import("csstype").Property.TouchAction | undefined;
msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
msTransform?: import("csstype").Property.Transform | undefined;
msTransformOrigin?: string | number | undefined;
msTransitionDelay?: import("csstype").Property.TransitionDelay | undefined;
msTransitionDuration?: import("csstype").Property.TransitionDuration | undefined;
msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
msWordBreak?: import("csstype").Property.WordBreak | undefined;
msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
msWrapMargin?: import("csstype").Property.MsWrapMargin | undefined;
msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
msWritingMode?: import("csstype").Property.WritingMode | undefined;
WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay | undefined;
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration | undefined;
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
WebkitBackgroundSize?: string | number | undefined;
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
WebkitBorderBeforeWidth?: string | number | undefined;
WebkitBorderBottomLeftRadius?: string | number | undefined;
WebkitBorderBottomRightRadius?: string | number | undefined;
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
WebkitBorderTopLeftRadius?: string | number | undefined;
WebkitBorderTopRightRadius?: string | number | undefined;
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
WebkitBoxReflect?: string | number | undefined;
WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
WebkitColumnRuleWidth?: string | number | undefined;
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
WebkitColumnWidth?: import("csstype").Property.ColumnWidth | undefined;
WebkitFilter?: import("csstype").Property.Filter | undefined;
WebkitFlexBasis?: string | number | undefined;
WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
WebkitFontSmoothing?: import("csstype").Property.FontSmooth | undefined;
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
WebkitMarginEnd?: string | number | undefined;
WebkitMarginStart?: string | number | undefined;
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
WebkitMaskBoxImageOutset?: string | number | undefined;
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
WebkitMaskBoxImageWidth?: string | number | undefined;
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
WebkitMaskPosition?: string | number | undefined;
WebkitMaskPositionX?: string | number | undefined;
WebkitMaskPositionY?: string | number | undefined;
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
WebkitMaskSize?: string | number | undefined;
WebkitMaxInlineSize?: string | number | undefined;
WebkitOrder?: import("csstype").Property.Order | undefined;
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
WebkitPaddingEnd?: string | number | undefined;
WebkitPaddingStart?: string | number | undefined;
WebkitPerspective?: import("csstype").Property.Perspective | undefined;
WebkitPerspectiveOrigin?: string | number | undefined;
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
WebkitShapeMargin?: string | number | undefined;
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth | undefined;
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
WebkitTransform?: import("csstype").Property.Transform | undefined;
WebkitTransformOrigin?: string | number | undefined;
WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay | undefined;
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration | undefined;
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
MozAnimation?: import("csstype").Property.Animation | undefined;
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
MozColumnRule?: string | number | undefined;
MozColumns?: string | number | undefined;
MozTransition?: import("csstype").Property.Transition | undefined;
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
msFlex?: string | number | undefined;
msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
msTransition?: import("csstype").Property.Transition | undefined;
WebkitAnimation?: import("csstype").Property.Animation | undefined;
WebkitBorderBefore?: string | number | undefined;
WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
WebkitBorderRadius?: string | number | undefined;
WebkitColumnRule?: string | number | undefined;
WebkitColumns?: string | number | undefined;
WebkitFlex?: string | number | undefined;
WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
WebkitMask?: string | number | undefined;
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
WebkitTextStroke?: string | number | undefined;
WebkitTransition?: import("csstype").Property.Transition | undefined;
azimuth?: import("csstype").Property.Azimuth | undefined;
boxAlign?: import("csstype").Property.BoxAlign | undefined;
boxDirection?: import("csstype").Property.BoxDirection | undefined;
boxFlex?: import("csstype").Property.BoxFlex | undefined;
boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
boxLines?: import("csstype").Property.BoxLines | undefined;
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
boxOrient?: import("csstype").Property.BoxOrient | undefined;
boxPack?: import("csstype").Property.BoxPack | undefined;
clip?: import("csstype").Property.Clip | undefined;
gridColumnGap?: string | number | undefined;
gridGap?: string | number | undefined;
gridRowGap?: string | number | undefined;
imeMode?: import("csstype").Property.ImeMode | undefined;
offsetBlock?: string | number | undefined;
offsetBlockEnd?: string | number | undefined;
offsetBlockStart?: string | number | undefined;
offsetInline?: string | number | undefined;
offsetInlineEnd?: string | number | undefined;
offsetInlineStart?: string | number | undefined;
scrollSnapCoordinate?: string | number | undefined;
scrollSnapDestination?: string | number | undefined;
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
MozBackgroundSize?: string | number | undefined;
MozBinding?: import("csstype").Property.MozBinding | undefined;
MozBorderRadius?: string | number | undefined;
MozBorderRadiusBottomleft?: string | number | undefined;
MozBorderRadiusBottomright?: string | number | undefined;
MozBorderRadiusTopleft?: string | number | undefined;
MozBorderRadiusTopright?: string | number | undefined;
MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
MozOpacity?: import("csstype").Property.Opacity | undefined;
MozOutline?: string | number | undefined;
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
MozOutlineRadius?: string | number | undefined;
MozOutlineRadiusBottomleft?: string | number | undefined;
MozOutlineRadiusBottomright?: string | number | undefined;
MozOutlineRadiusTopleft?: string | number | undefined;
MozOutlineRadiusTopright?: string | number | undefined;
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
MozOutlineWidth?: import("csstype").Property.OutlineWidth | undefined;
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
msImeMode?: import("csstype").Property.ImeMode | undefined;
OAnimation?: import("csstype").Property.Animation | undefined;
OAnimationDelay?: import("csstype").Property.AnimationDelay | undefined;
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
OAnimationDuration?: import("csstype").Property.AnimationDuration | undefined;
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
OAnimationName?: import("csstype").Property.AnimationName | undefined;
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
OBackgroundSize?: string | number | undefined;
OBorderImage?: import("csstype").Property.BorderImage | undefined;
OObjectFit?: import("csstype").Property.ObjectFit | undefined;
OObjectPosition?: string | number | undefined;
OTabSize?: string | number | undefined;
OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
OTransform?: import("csstype").Property.Transform | undefined;
OTransformOrigin?: string | number | undefined;
OTransition?: import("csstype").Property.Transition | undefined;
OTransitionDelay?: import("csstype").Property.TransitionDelay | undefined;
OTransitionDuration?: import("csstype").Property.TransitionDuration | undefined;
OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
baselineShift?: string | number | undefined;
clipRule?: import("csstype").Property.ClipRule | undefined;
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
colorRendering?: import("csstype").Property.ColorRendering | undefined;
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
fill?: import("csstype").Property.Fill | undefined;
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
fillRule?: import("csstype").Property.FillRule | undefined;
floodColor?: import("csstype").Property.FloodColor | undefined;
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
lightingColor?: import("csstype").Property.LightingColor | undefined;
marker?: import("csstype").Property.Marker | undefined;
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
markerMid?: import("csstype").Property.MarkerMid | undefined;
markerStart?: import("csstype").Property.MarkerStart | undefined;
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
stopColor?: import("csstype").Property.StopColor | undefined;
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
stroke?: import("csstype").Property.Stroke | undefined;
strokeDasharray?: string | number | undefined;
strokeDashoffset?: string | number | undefined;
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
strokeWidth?: string | number | undefined;
textAnchor?: import("csstype").Property.TextAnchor | undefined;
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
};
accept?: string | undefined;
acceptCharset?: string | undefined;
action?: string | undefined;
allowFullScreen?: boolean | undefined;
allowTransparency?: boolean | undefined;
alt?: string | undefined;
as?: string | undefined;
async?: boolean | undefined;
autoComplete?: string | undefined;
autoFocus?: boolean | undefined;
autoPlay?: boolean | undefined;
capture?: boolean | "user" | "environment" | undefined;
cellPadding?: string | number | undefined;
cellSpacing?: string | number | undefined;
charSet?: string | undefined;
challenge?: string | undefined;
checked?: boolean | undefined;
cite?: string | undefined;
classID?: string | undefined;
cols?: number | undefined;
colSpan?: number | undefined;
content?: string | undefined;
controls?: boolean | undefined;
coords?: string | undefined;
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
data?: string | undefined;
dateTime?: string | undefined;
default?: boolean | undefined;
defer?: boolean | undefined;
disabled?: boolean | undefined;
download?: any;
encType?: string | undefined;
form?: string | undefined;
formAction?: string | undefined;
formEncType?: string | undefined;
formMethod?: string | undefined;
formNoValidate?: boolean | undefined;
formTarget?: string | undefined;
frameBorder?: string | number | undefined;
headers?: string | undefined;
height?: string | number | undefined;
high?: number | undefined;
href?: string | undefined;
hrefLang?: string | undefined;
htmlFor?: string | undefined;
httpEquiv?: string | undefined;
integrity?: string | undefined;
keyParams?: string | undefined;
keyType?: string | undefined;
kind?: string | undefined;
label?: string | undefined;
list?: string | undefined;
loop?: boolean | undefined;
low?: number | undefined;
manifest?: string | undefined;
marginHeight?: number | undefined;
marginWidth?: number | undefined;
max?: string | number | undefined;
maxLength?: number | undefined;
media?: string | undefined;
mediaGroup?: string | undefined;
method?: string | undefined;
min?: string | number | undefined;
minLength?: number | undefined;
multiple?: boolean | undefined;
muted?: boolean | undefined;
name?: string | undefined;
noValidate?: boolean | undefined;
open?: boolean | undefined;
optimum?: number | undefined;
pattern?: string | undefined;
placeholder?: string | undefined;
playsInline?: boolean | undefined;
poster?: string | undefined;
preload?: string | undefined;
readOnly?: boolean | undefined;
rel?: string | undefined;
required?: boolean | undefined;
reversed?: boolean | undefined;
rows?: number | undefined;
rowSpan?: number | undefined;
sandbox?: string | undefined;
scope?: string | undefined;
scoped?: boolean | undefined;
scrolling?: string | undefined;
seamless?: boolean | undefined;
selected?: boolean | undefined;
shape?: string | undefined;
size?: number | undefined;
sizes?: string | undefined;
span?: number | undefined;
src?: string | undefined;
srcDoc?: string | undefined;
srcLang?: string | undefined;
srcSet?: string | undefined;
start?: number | undefined;
step?: string | number | undefined;
summary?: string | undefined;
target?: string | undefined;
type?: string | undefined;
useMap?: string | undefined;
value?: string | number | readonly string[] | undefined;
width?: string | number | undefined;
wmode?: string | undefined;
wrap?: string | undefined;
defaultChecked?: boolean | undefined;
defaultValue?: string | number | readonly string[] | undefined;
suppressContentEditableWarning?: boolean | undefined;
suppressHydrationWarning?: boolean | undefined;
accessKey?: string | undefined;
contentEditable?: (boolean | "false" | "true") | "inherit" | undefined;
contextMenu?: string | undefined;
dir?: string | undefined;
draggable?: (boolean | "false" | "true") | undefined;
hidden?: boolean | undefined;
id?: string | undefined;
lang?: string | undefined;
nonce?: string | undefined;
slot?: string | undefined;
spellCheck?: (boolean | "false" | "true") | undefined;
tabIndex?: number | undefined;
title?: string | undefined;
translate?: "no" | "yes" | undefined;
radioGroup?: string | undefined;
role?: import("react").AriaRole | undefined;
about?: string | undefined;
datatype?: string | undefined;
inlist?: any;
prefix?: string | undefined;
property?: string | undefined;
resource?: string | undefined;
typeof?: string | undefined;
vocab?: string | undefined;
autoCapitalize?: string | undefined;
autoCorrect?: string | undefined;
autoSave?: string | undefined;
color?: string | undefined;
itemProp?: string | undefined;
itemScope?: boolean | undefined;
itemType?: string | undefined;
itemID?: string | undefined;
itemRef?: string | undefined;
results?: number | undefined;
security?: string | undefined;
unselectable?: "on" | "off" | undefined;
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
is?: string | undefined;
'aria-activedescendant'?: string | undefined;
'aria-atomic'?: (boolean | "false" | "true") | undefined;
'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
'aria-busy'?: (boolean | "false" | "true") | undefined;
'aria-checked'?: boolean | "false" | "true" | "mixed" | undefined;
'aria-colcount'?: number | undefined;
'aria-colindex'?: number | undefined;
'aria-colspan'?: number | undefined;
'aria-controls'?: string | undefined;
'aria-current'?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
'aria-describedby'?: string | undefined;
'aria-details'?: string | undefined;
'aria-disabled'?: (boolean | "false" | "true") | undefined;
'aria-dropeffect'?: "copy" | "link" | "none" | "execute" | "move" | "popup" | undefined;
'aria-errormessage'?: string | undefined;
'aria-expanded'?: (boolean | "false" | "true") | undefined;
'aria-flowto'?: string | undefined;
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
'aria-haspopup'?: boolean | "false" | "true" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
'aria-hidden'?: (boolean | "false" | "true") | undefined;
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
'aria-keyshortcuts'?: string | undefined;
'aria-label'?: string | undefined;
'aria-labelledby'?: string | undefined;
'aria-level'?: number | undefined;
'aria-live'?: "off" | "assertive" | "polite" | undefined;
'aria-modal'?: (boolean | "false" | "true") | undefined;
'aria-multiline'?: (boolean | "false" | "true") | undefined;
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
'aria-orientation'?: "horizontal" | "vertical" | undefined;
'aria-owns'?: string | undefined;
'aria-placeholder'?: string | undefined;
'aria-posinset'?: number | undefined;
'aria-pressed'?: boolean | "false" | "true" | "mixed" | undefined;
'aria-readonly'?: (boolean | "false" | "true") | undefined;
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
'aria-required'?: (boolean | "false" | "true") | undefined;
'aria-roledescription'?: string | undefined;
'aria-rowcount'?: number | undefined;
'aria-rowindex'?: number | undefined;
'aria-rowspan'?: number | undefined;
'aria-selected'?: (boolean | "false" | "true") | undefined;
'aria-setsize'?: number | undefined;
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
'aria-valuemax'?: number | undefined;
'aria-valuemin'?: number | undefined;
'aria-valuenow'?: number | undefined;
'aria-valuetext'?: string | undefined;
children?: import("react").ReactNode;
dangerouslySetInnerHTML?: {
__html: string;
} | undefined;
onCopy?: import("react").ClipboardEventHandler | undefined;
onCopyCapture?: import("react").ClipboardEventHandler | undefined;
onCut?: import("react").ClipboardEventHandler | undefined;
onCutCapture?: import("react").ClipboardEventHandler | undefined;
onPaste?: import("react").ClipboardEventHandler | undefined;
onPasteCapture?: import("react").ClipboardEventHandler | undefined;
onCompositionEnd?: import("react").CompositionEventHandler | undefined;
onCompositionEndCapture?: import("react").CompositionEventHandler | undefined;
onCompositionStart?: import("react").CompositionEventHandler | undefined;
onCompositionStartCapture?: import("react").CompositionEventHandler | undefined;
onCompositionUpdate?: import("react").CompositionEventHandler | undefined;
onCompositionUpdateCapture?: import("react").CompositionEventHandler | undefined;
onFocus?: import("react").FocusEventHandler | undefined;
onFocusCapture?: import("react").FocusEventHandler | undefined;
onBlur?: import("react").FocusEventHandler | undefined;
onBlurCapture?: import("react").FocusEventHandler | undefined;
onChange?: import("react").FormEventHandler | undefined;
onChangeCapture?: import("react").FormEventHandler | undefined;
onBeforeInput?: import("react").FormEventHandler | undefined;
onBeforeInputCapture?: import("react").FormEventHandler | undefined;
onInput?: import("react").FormEventHandler | undefined;
onInputCapture?: import("react").FormEventHandler | undefined;
onReset?: import("react").FormEventHandler | undefined;
onResetCapture?: import("react").FormEventHandler | undefined;
onSubmit?: import("react").FormEventHandler | undefined;
onSubmitCapture?: import("react").FormEventHandler | undefined;
onInvalid?: import("react").FormEventHandler | undefined;
onInvalidCapture?: import("react").FormEventHandler | undefined;
onLoad?: import("react").ReactEventHandler | undefined;
onLoadCapture?: import("react").ReactEventHandler | undefined;
onError?: import("react").ReactEventHandler | undefined;
onErrorCapture?: import("react").ReactEventHandler | undefined;
onKeyDown?: import("react").KeyboardEventHandler | undefined;
onKeyDownCapture?: import("react").KeyboardEventHandler | undefined;
onKeyPress?: import("react").KeyboardEventHandler | undefined;
onKeyPressCapture?: import("react").KeyboardEventHandler | undefined;
onKeyUp?: import("react").KeyboardEventHandler | undefined;
onKeyUpCapture?: import("react").KeyboardEventHandler | undefined;
onAbort?: import("react").ReactEventHandler | undefined;
onAbortCapture?: import("react").ReactEventHandler | undefined;
onCanPlay?: import("react").ReactEventHandler | undefined;
onCanPlayCapture?: import("react").ReactEventHandler | undefined;
onCanPlayThrough?: import("react").ReactEventHandler | undefined;
onCanPlayThroughCapture?: import("react").ReactEventHandler | undefined;
onDurationChange?: import("react").ReactEventHandler | undefined;
onDurationChangeCapture?: import("react").ReactEventHandler | undefined;
onEmptied?: import("react").ReactEventHandler | undefined;
onEmptiedCapture?: import("react").ReactEventHandler | undefined;
onEncrypted?: import("react").ReactEventHandler | undefined;
onEncryptedCapture?: import("react").ReactEventHandler | undefined;
onEnded?: import("react").ReactEventHandler | undefined;
onEndedCapture?: import("react").ReactEventHandler | undefined;
onLoadedData?: import("react").ReactEventHandler | undefined;
onLoadedDataCapture?: import("react").ReactEventHandler | undefined;
onLoadedMetadata?: import("react").ReactEventHandler | undefined;
onLoadedMetadataCapture?: import("react").ReactEventHandler | undefined;
onLoadStart?: import("react").ReactEventHandler | undefined;
onLoadStartCapture?: import("react").ReactEventHandler | undefined;
onPause?: import("react").ReactEventHandler | undefined;
onPauseCapture?: import("react").ReactEventHandler | undefined;
onPlay?: import("react").ReactEventHandler | undefined;
onPlayCapture?: import("react").ReactEventHandler | undefined;
onPlaying?: import("react").ReactEventHandler | undefined;
onPlayingCapture?: import("react").ReactEventHandler | undefined;
onProgress?: import("react").ReactEventHandler | undefined;
onProgressCapture?: import("react").ReactEventHandler | undefined;
onRateChange?: import("react").ReactEventHandler | undefined;
onRateChangeCapture?: import("react").ReactEventHandler | undefined;
onResize?: import("react").ReactEventHandler | undefined;
onResizeCapture?: import("react").ReactEventHandler | undefined;
onSeeked?: import("react").ReactEventHandler | undefined;
onSeekedCapture?: import("react").ReactEventHandler | undefined;
onSeeking?: import("react").ReactEventHandler | undefined;
onSeekingCapture?: import("react").ReactEventHandler | undefined;
onStalled?: import("react").ReactEventHandler | undefined;
onStalledCapture?: import("react").ReactEventHandler | undefined;
onSuspend?: import("react").ReactEventHandler | undefined;
onSuspendCapture?: import("react").ReactEventHandler | undefined;
onTimeUpdate?: import("react").ReactEventHandler | undefined;
onTimeUpdateCapture?: import("react").ReactEventHandler | undefined;
onVolumeChange?: import("react").ReactEventHandler | undefined;
onVolumeChangeCapture?: import("react").ReactEventHandler | undefined;
onWaiting?: import("react").ReactEventHandler | undefined;
onWaitingCapture?: import("react").ReactEventHandler | undefined;
onAuxClick?: import("react").MouseEventHandler | undefined;
onAuxClickCapture?: import("react").MouseEventHandler | undefined;
onClick?: import("react").MouseEventHandler | undefined;
onClickCapture?: import("react").MouseEventHandler | undefined;
onContextMenu?: import("react").MouseEventHandler | undefined;
onContextMenuCapture?: import("react").MouseEventHandler | undefined;
onDoubleClick?: import("react").MouseEventHandler | undefined;
onDoubleClickCapture?: import("react").MouseEventHandler | undefined;
onDrag?: import("react").DragEventHandler | undefined;
onDragCapture?: import("react").DragEventHandler | undefined;
onDragEnd?: import("react").DragEventHandler | undefined;
onDragEndCapture?: import("react").DragEventHandler | undefined;
onDragEnter?: import("react").DragEventHandler | undefined;
onDragEnterCapture?: import("react").DragEventHandler | undefined;
onDragExit?: import("react").DragEventHandler | undefined;
onDragExitCapture?: import("react").DragEventHandler | undefined;
onDragLeave?: import("react").DragEventHandler | undefined;
onDragLeaveCapture?: import("react").DragEventHandler | undefined;
onDragOver?: import("react").DragEventHandler | undefined;
onDragOverCapture?: import("react").DragEventHandler | undefined;
onDragStart?: import("react").DragEventHandler | undefined;
onDragStartCapture?: import("react").DragEventHandler | undefined;
onDrop?: import("react").DragEventHandler | undefined;
onDropCapture?: import("react").DragEventHandler | undefined;
onMouseDown?: import("react").MouseEventHandler | undefined;
onMouseDownCapture?: import("react").MouseEventHandler | undefined;
onMouseEnter?: import("react").MouseEventHandler | undefined;
onMouseLeave?: import("react").MouseEventHandler | undefined;
onMouseMove?: import("react").MouseEventHandler | undefined;
onMouseMoveCapture?: import("react").MouseEventHandler | undefined;
onMouseOut?: import("react").MouseEventHandler | undefined;
onMouseOutCapture?: import("react").MouseEventHandler | undefined;
onMouseOver?: import("react").MouseEventHandler | undefined;
onMouseOverCapture?: import("react").MouseEventHandler | undefined;
onMouseUp?: import("react").MouseEventHandler | undefined;
onMouseUpCapture?: import("react").MouseEventHandler | undefined;
onSelect?: import("react").ReactEventHandler | undefined;
onSelectCapture?: import("react").ReactEventHandler | undefined;
onTouchCancel?: import("react").TouchEventHandler | undefined;
onTouchCancelCapture?: import("react").TouchEventHandler | undefined;
onTouchEnd?: import("react").TouchEventHandler | undefined;
onTouchEndCapture?: import("react").TouchEventHandler | undefined;
onTouchMove?: import("react").TouchEventHandler | undefined;
onTouchMoveCapture?: import("react").TouchEventHandler | undefined;
onTouchStart?: import("react").TouchEventHandler | undefined;
onTouchStartCapture?: import("react").TouchEventHandler | undefined;
onPointerDown?: import("react").PointerEventHandler | undefined;
onPointerDownCapture?: import("react").PointerEventHandler | undefined;
onPointerMove?: import("react").PointerEventHandler | undefined;
onPointerMoveCapture?: import("react").PointerEventHandler | undefined;
onPointerUp?: import("react").PointerEventHandler | undefined;
onPointerUpCapture?: import("react").PointerEventHandler | undefined;
onPointerCancel?: import("react").PointerEventHandler | undefined;
onPointerCancelCapture?: import("react").PointerEventHandler | undefined;
onPointerEnter?: import("react").PointerEventHandler | undefined;
onPointerEnterCapture?: import("react").PointerEventHandler | undefined;
onPointerLeave?: import("react").PointerEventHandler | undefined;
onPointerLeaveCapture?: import("react").PointerEventHandler | undefined;
onPointerOver?: import("react").PointerEventHandler | undefined;
onPointerOverCapture?: import("react").PointerEventHandler | undefined;
onPointerOut?: import("react").PointerEventHandler | undefined;
onPointerOutCapture?: import("react").PointerEventHandler | undefined;
onGotPointerCapture?: import("react").PointerEventHandler | undefined;
onGotPointerCaptureCapture?: import("react").PointerEventHandler | undefined;
onLostPointerCapture?: import("react").PointerEventHandler | undefined;
onLostPointerCaptureCapture?: import("react").PointerEventHandler | undefined;
onScroll?: import("react").UIEventHandler | undefined;
onScrollCapture?: import("react").UIEventHandler | undefined;
onWheel?: import("react").WheelEventHandler | undefined;
onWheelCapture?: import("react").WheelEventHandler | undefined;
onAnimationStart?: import("react").AnimationEventHandler | undefined;
onAnimationStartCapture?: import("react").AnimationEventHandler | undefined;
onAnimationEnd?: import("react").AnimationEventHandler | undefined;
onAnimationEndCapture?: import("react").AnimationEventHandler | undefined;
onAnimationIteration?: import("react").AnimationEventHandler | undefined;
onAnimationIterationCapture?: import("react").AnimationEventHandler | undefined;
onTransitionEnd?: import("react").TransitionEventHandler | undefined;
onTransitionEndCapture?: import("react").TransitionEventHandler | undefined;
ref?: import("react").LegacyRef | undefined;
key?: import("react").Key | null | undefined;
};
/**
* Given a record of HTML attributes, returns tho
* equivalent React props.
*/
export declare function htmlAttrsToReactProps(attrs: Record): HTMLProps;