import * as react_jsx_runtime from 'react/jsx-runtime'; import * as react from 'react'; import { PropsWithChildren, CSSProperties, Component, MouseEvent, TouchEvent } from 'react'; import { ColorInput, ColorFormats } from 'tinycolor2'; import * as csstype from 'csstype'; type ColorPickerProps = PropsWithChildren<{ className?: string; hueStyle?: CSSProperties; onDrag?: (value: string, newColor: ColorInput) => void; onChange?: (value: string, newColor: ColorInput) => void; value?: string | ColorFormats.HSVA; defaultColor?: string | ColorFormats.HSVA; hueHeight?: number; hueMargin?: number; hueWidth?: number; saturationWidth?: number; saturationHeight?: number; }>; type StateType$1 = { dragHue: number | null; }; declare class ColorPicker extends Component { static defaultProps: { className: string; hueStyle: {}; onDrag: Function; onChange: Function; value: null; defaultColor: string; hueHeight: null; hueMargin: number; hueWidth: number; saturationWidth: number; saturationHeight: number; children: null; }; constructor(props: ColorPickerProps); handleSaturationChange: (color: ColorInput) => void; handleHueChange: (color: ColorInput) => void; handleHueDrag: (hsv: string | ColorFormats.HSVA) => void; handleSaturationDrag: (hsv: ColorInput) => void; handleHueMouseDown: (hsv: string | ColorFormats.HSVA) => void; handleSaturationMouseDown: (hsv: string | ColorFormats.HSVA) => void; handleDrag(color: ColorInput): void; handleChange(color: ColorInput): void; render(): react_jsx_runtime.JSX.Element; } type ConfigType = { diff?: { top: number; left: number; }; initialPoint?: { x: number; y: number; width: number; height: number; }; minLeft: number; maxLeft: number; }; type PointType = { x: number; y: number; width: number; height: number; }; type StateType = { dragHue?: number; h?: number; top: number; left: number; mouseDown: PointType | null; pointerTop?: number; pointerLeft?: number; }; type BaseProps = { inPicker?: boolean; onMouseDown?: (...colors: readonly (string | ColorFormats.HSVA)[]) => void; onDrag?: (...colors: readonly (string | ColorFormats.HSVA)[]) => void; onChange?: (...colors: readonly ColorInput[]) => void; }; declare class BaseComponent extends Component { static defaultProps: { inPicker: boolean; onMouseDown: undefined; onDrag: undefined; onChange: undefined; }; hsv: ColorFormats.HSVA | null; state: StateType; rootRef: react.RefObject; updateColor(_: PointType): ColorFormats.HSVA; getColors(hsv: ColorFormats.HSVA): (string | ColorFormats.HSVA)[]; onStartMove: (clientX: number, clientY: number) => void; onMouseDown: (event: MouseEvent) => void; onTouchStart: (event: TouchEvent) => void; handleMouseDown: (config: ConfigType) => void; handleUpdate(config: ConfigType): void; handleDrag(config: ConfigType, hsv: ColorFormats.HSVA): void; handleDrop(config: ConfigType, hsv: ColorFormats.HSVA): void; } type HueSpectrumProps = { value?: string | ColorFormats.HSVA; height?: number; width?: number; pointerSize?: number; defaultColor?: string | ColorFormats.HSVA; style?: CSSProperties; }; declare class HueSpectrum extends BaseComponent { static defaultProps: { value: null; height: number; width: number; pointerSize: number; defaultColor: string; inPicker: boolean; onMouseDown: undefined; onDrag: undefined; onChange: undefined; }; state: { h: number; dragHue?: number | undefined; top: number; left: number; mouseDown: PointType | null; pointerTop?: number | undefined; pointerLeft?: number | undefined; }; mounted: boolean; isComponentMounted(): boolean; componentDidMount(): void; updateDragPositionIf(): void; getDragPosition(): number | null; updateColor(point: PointType): { a: number; h: number; s: number; v: number; }; render(): react_jsx_runtime.JSX.Element; } type SaturationSpectrumProps = { className?: string; color?: string | ColorFormats.HSVA; value?: string | ColorFormats.HSVA; height?: number; width?: number; pointerSize?: number; defaultColor?: string | ColorFormats.HSVA; style?: CSSProperties; }; declare class SaturationSpectrum extends BaseComponent { static defaultProps: { value: null; height: number; width: number; pointerSize: number; defaultColor: string; isSaturationSpectrum: boolean; inPicker: boolean; onMouseDown: undefined; onDrag: undefined; onChange: undefined; }; mounted: boolean; componentDidMount(): void; isComponentMounted(): boolean; updateDragPositionIf(): void; getDragPosition(): { left: number; top: number; } | null; prepareProps(thisProps: BaseProps & SaturationSpectrumProps): BaseProps & SaturationSpectrumProps; prepareStyle(props: BaseProps & SaturationSpectrumProps): { accentColor?: csstype.Property.AccentColor | undefined; alignContent?: csstype.Property.AlignContent | undefined; alignItems?: csstype.Property.AlignItems | undefined; alignSelf?: csstype.Property.AlignSelf | undefined; alignTracks?: csstype.Property.AlignTracks | undefined; animationDelay?: csstype.Property.AnimationDelay | undefined; animationDirection?: csstype.Property.AnimationDirection | undefined; animationDuration?: csstype.Property.AnimationDuration | undefined; animationFillMode?: csstype.Property.AnimationFillMode | undefined; animationIterationCount?: csstype.Property.AnimationIterationCount | undefined; animationName?: csstype.Property.AnimationName | undefined; animationPlayState?: csstype.Property.AnimationPlayState | undefined; animationTimeline?: csstype.Property.AnimationTimeline | undefined; animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; appearance?: csstype.Property.Appearance | undefined; aspectRatio?: csstype.Property.AspectRatio | undefined; backdropFilter?: csstype.Property.BackdropFilter | undefined; backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined; backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined; backgroundClip?: csstype.Property.BackgroundClip | undefined; backgroundColor?: csstype.Property.BackgroundColor | undefined; backgroundImage?: csstype.Property.BackgroundImage | undefined; backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; backgroundPositionX?: csstype.Property.BackgroundPositionX | undefined; backgroundPositionY?: csstype.Property.BackgroundPositionY | undefined; backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined; backgroundSize?: csstype.Property.BackgroundSize | undefined; blockOverflow?: csstype.Property.BlockOverflow | undefined; blockSize?: csstype.Property.BlockSize | undefined; borderBlockColor?: csstype.Property.BorderBlockColor | undefined; borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined; borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined; borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth | undefined; borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined; borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined; borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth | undefined; borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined; borderBlockWidth?: csstype.Property.BorderBlockWidth | undefined; borderBottomColor?: csstype.Property.BorderBottomColor | undefined; borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined; borderBottomWidth?: csstype.Property.BorderBottomWidth | undefined; borderCollapse?: csstype.Property.BorderCollapse | undefined; borderEndEndRadius?: csstype.Property.BorderEndEndRadius | undefined; borderEndStartRadius?: csstype.Property.BorderEndStartRadius | undefined; borderImageOutset?: csstype.Property.BorderImageOutset | undefined; borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined; borderImageSlice?: csstype.Property.BorderImageSlice | undefined; borderImageSource?: csstype.Property.BorderImageSource | undefined; borderImageWidth?: csstype.Property.BorderImageWidth | undefined; borderInlineColor?: csstype.Property.BorderInlineColor | undefined; borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined; borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined; borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth | undefined; borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined; borderInlineWidth?: csstype.Property.BorderInlineWidth | undefined; borderLeftColor?: csstype.Property.BorderLeftColor | undefined; borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined; borderLeftWidth?: csstype.Property.BorderLeftWidth | undefined; borderRightColor?: csstype.Property.BorderRightColor | undefined; borderRightStyle?: csstype.Property.BorderRightStyle | undefined; borderRightWidth?: csstype.Property.BorderRightWidth | undefined; borderSpacing?: csstype.Property.BorderSpacing | undefined; borderStartEndRadius?: csstype.Property.BorderStartEndRadius | undefined; borderStartStartRadius?: csstype.Property.BorderStartStartRadius | undefined; borderTopColor?: csstype.Property.BorderTopColor | undefined; borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; borderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; borderTopStyle?: csstype.Property.BorderTopStyle | undefined; borderTopWidth?: csstype.Property.BorderTopWidth | undefined; bottom?: csstype.Property.Bottom | undefined; boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; boxShadow?: csstype.Property.BoxShadow | undefined; boxSizing?: csstype.Property.BoxSizing | undefined; breakAfter?: csstype.Property.BreakAfter | undefined; breakBefore?: csstype.Property.BreakBefore | undefined; breakInside?: csstype.Property.BreakInside | undefined; captionSide?: csstype.Property.CaptionSide | undefined; caretColor?: csstype.Property.CaretColor | undefined; clear?: csstype.Property.Clear | undefined; clipPath?: csstype.Property.ClipPath | undefined; color?: csstype.Property.Color | undefined; colorAdjust?: csstype.Property.PrintColorAdjust | undefined; colorScheme?: csstype.Property.ColorScheme | undefined; columnCount?: csstype.Property.ColumnCount | undefined; columnFill?: csstype.Property.ColumnFill | undefined; columnGap?: csstype.Property.ColumnGap | undefined; columnRuleColor?: csstype.Property.ColumnRuleColor | undefined; columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; columnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; columnSpan?: csstype.Property.ColumnSpan | undefined; columnWidth?: csstype.Property.ColumnWidth | undefined; contain?: csstype.Property.Contain | undefined; content?: csstype.Property.Content | undefined; contentVisibility?: csstype.Property.ContentVisibility | undefined; counterIncrement?: csstype.Property.CounterIncrement | undefined; counterReset?: csstype.Property.CounterReset | undefined; counterSet?: csstype.Property.CounterSet | undefined; cursor?: csstype.Property.Cursor | undefined; direction?: csstype.Property.Direction | undefined; display?: csstype.Property.Display | undefined; emptyCells?: csstype.Property.EmptyCells | undefined; filter?: csstype.Property.Filter | undefined; flexBasis?: csstype.Property.FlexBasis | undefined; flexDirection?: csstype.Property.FlexDirection | undefined; flexGrow?: csstype.Property.FlexGrow | undefined; flexShrink?: csstype.Property.FlexShrink | undefined; flexWrap?: csstype.Property.FlexWrap | undefined; float?: csstype.Property.Float | undefined; fontFamily?: csstype.Property.FontFamily | undefined; fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; fontKerning?: csstype.Property.FontKerning | undefined; fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined; fontSize?: csstype.Property.FontSize | undefined; fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined; fontSmooth?: csstype.Property.FontSmooth | undefined; fontStretch?: csstype.Property.FontStretch | undefined; fontStyle?: csstype.Property.FontStyle | undefined; fontSynthesis?: csstype.Property.FontSynthesis | undefined; fontVariant?: csstype.Property.FontVariant | undefined; fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined; fontVariantCaps?: csstype.Property.FontVariantCaps | undefined; fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined; fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined; fontVariantPosition?: csstype.Property.FontVariantPosition | undefined; fontVariationSettings?: csstype.Property.FontVariationSettings | undefined; fontWeight?: csstype.Property.FontWeight | undefined; forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined; gridAutoColumns?: csstype.Property.GridAutoColumns | undefined; gridAutoFlow?: csstype.Property.GridAutoFlow | undefined; gridAutoRows?: csstype.Property.GridAutoRows | undefined; gridColumnEnd?: csstype.Property.GridColumnEnd | undefined; gridColumnStart?: csstype.Property.GridColumnStart | undefined; gridRowEnd?: csstype.Property.GridRowEnd | undefined; gridRowStart?: csstype.Property.GridRowStart | undefined; gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined; gridTemplateColumns?: csstype.Property.GridTemplateColumns | undefined; gridTemplateRows?: csstype.Property.GridTemplateRows | undefined; hangingPunctuation?: csstype.Property.HangingPunctuation | undefined; height?: csstype.Property.Height | undefined; hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; hyphens?: csstype.Property.Hyphens | undefined; imageOrientation?: csstype.Property.ImageOrientation | undefined; imageRendering?: csstype.Property.ImageRendering | undefined; imageResolution?: csstype.Property.ImageResolution | undefined; initialLetter?: csstype.Property.InitialLetter | undefined; inlineSize?: csstype.Property.InlineSize | undefined; inputSecurity?: csstype.Property.InputSecurity | undefined; inset?: csstype.Property.Inset | undefined; insetBlock?: csstype.Property.InsetBlock | undefined; insetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; insetBlockStart?: csstype.Property.InsetBlockStart | undefined; insetInline?: csstype.Property.InsetInline | undefined; insetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; insetInlineStart?: csstype.Property.InsetInlineStart | undefined; isolation?: csstype.Property.Isolation | undefined; justifyContent?: csstype.Property.JustifyContent | undefined; justifyItems?: csstype.Property.JustifyItems | undefined; justifySelf?: csstype.Property.JustifySelf | undefined; justifyTracks?: csstype.Property.JustifyTracks | undefined; left?: csstype.Property.Left | undefined; letterSpacing?: csstype.Property.LetterSpacing | undefined; lineBreak?: csstype.Property.LineBreak | undefined; lineHeight?: csstype.Property.LineHeight | undefined; lineHeightStep?: csstype.Property.LineHeightStep | undefined; listStyleImage?: csstype.Property.ListStyleImage | undefined; listStylePosition?: csstype.Property.ListStylePosition | undefined; listStyleType?: csstype.Property.ListStyleType | undefined; marginBlock?: csstype.Property.MarginBlock | undefined; marginBlockEnd?: csstype.Property.MarginBlockEnd | undefined; marginBlockStart?: csstype.Property.MarginBlockStart | undefined; marginBottom?: csstype.Property.MarginBottom | undefined; marginInline?: csstype.Property.MarginInline | undefined; marginInlineEnd?: csstype.Property.MarginInlineEnd | undefined; marginInlineStart?: csstype.Property.MarginInlineStart | undefined; marginLeft?: csstype.Property.MarginLeft | undefined; marginRight?: csstype.Property.MarginRight | undefined; marginTop?: csstype.Property.MarginTop | undefined; maskBorderMode?: csstype.Property.MaskBorderMode | undefined; maskBorderOutset?: csstype.Property.MaskBorderOutset | undefined; maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined; maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined; maskBorderSource?: csstype.Property.MaskBorderSource | undefined; maskBorderWidth?: csstype.Property.MaskBorderWidth | undefined; maskClip?: csstype.Property.MaskClip | undefined; maskComposite?: csstype.Property.MaskComposite | undefined; maskImage?: csstype.Property.MaskImage | undefined; maskMode?: csstype.Property.MaskMode | undefined; maskOrigin?: csstype.Property.MaskOrigin | undefined; maskPosition?: csstype.Property.MaskPosition | undefined; maskRepeat?: csstype.Property.MaskRepeat | undefined; maskSize?: csstype.Property.MaskSize | undefined; maskType?: csstype.Property.MaskType | undefined; mathStyle?: csstype.Property.MathStyle | undefined; maxBlockSize?: csstype.Property.MaxBlockSize | undefined; maxHeight?: csstype.Property.MaxHeight | undefined; maxInlineSize?: csstype.Property.MaxInlineSize | undefined; maxLines?: csstype.Property.MaxLines | undefined; maxWidth?: csstype.Property.MaxWidth | undefined; minBlockSize?: csstype.Property.MinBlockSize | undefined; minHeight?: csstype.Property.MinHeight | undefined; minInlineSize?: csstype.Property.MinInlineSize | undefined; minWidth?: csstype.Property.MinWidth | undefined; mixBlendMode?: csstype.Property.MixBlendMode | undefined; motionDistance?: csstype.Property.OffsetDistance | undefined; motionPath?: csstype.Property.OffsetPath | undefined; motionRotation?: csstype.Property.OffsetRotate | undefined; objectFit?: csstype.Property.ObjectFit | undefined; objectPosition?: csstype.Property.ObjectPosition | undefined; offsetAnchor?: csstype.Property.OffsetAnchor | undefined; offsetDistance?: csstype.Property.OffsetDistance | undefined; offsetPath?: csstype.Property.OffsetPath | undefined; offsetRotate?: csstype.Property.OffsetRotate | undefined; offsetRotation?: csstype.Property.OffsetRotate | undefined; opacity?: csstype.Property.Opacity | undefined; order?: csstype.Property.Order | undefined; orphans?: csstype.Property.Orphans | undefined; outlineColor?: csstype.Property.OutlineColor | undefined; outlineOffset?: csstype.Property.OutlineOffset | undefined; outlineStyle?: csstype.Property.OutlineStyle | undefined; outlineWidth?: csstype.Property.OutlineWidth | undefined; overflowAnchor?: csstype.Property.OverflowAnchor | undefined; overflowBlock?: csstype.Property.OverflowBlock | undefined; overflowClipBox?: csstype.Property.OverflowClipBox | undefined; overflowClipMargin?: csstype.Property.OverflowClipMargin | undefined; overflowInline?: csstype.Property.OverflowInline | undefined; overflowWrap?: csstype.Property.OverflowWrap | undefined; overflowX?: csstype.Property.OverflowX | undefined; overflowY?: csstype.Property.OverflowY | undefined; overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined; overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined; overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined; overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined; paddingBlock?: csstype.Property.PaddingBlock | undefined; paddingBlockEnd?: csstype.Property.PaddingBlockEnd | undefined; paddingBlockStart?: csstype.Property.PaddingBlockStart | undefined; paddingBottom?: csstype.Property.PaddingBottom | undefined; paddingInline?: csstype.Property.PaddingInline | undefined; paddingInlineEnd?: csstype.Property.PaddingInlineEnd | undefined; paddingInlineStart?: csstype.Property.PaddingInlineStart | undefined; paddingLeft?: csstype.Property.PaddingLeft | undefined; paddingRight?: csstype.Property.PaddingRight | undefined; paddingTop?: csstype.Property.PaddingTop | undefined; pageBreakAfter?: csstype.Property.PageBreakAfter | undefined; pageBreakBefore?: csstype.Property.PageBreakBefore | undefined; pageBreakInside?: csstype.Property.PageBreakInside | undefined; paintOrder?: csstype.Property.PaintOrder | undefined; perspective?: csstype.Property.Perspective | undefined; perspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; placeContent?: csstype.Property.PlaceContent | undefined; pointerEvents?: csstype.Property.PointerEvents | undefined; position?: csstype.Property.Position | undefined; printColorAdjust?: csstype.Property.PrintColorAdjust | undefined; quotes?: csstype.Property.Quotes | undefined; resize?: csstype.Property.Resize | undefined; right?: csstype.Property.Right | undefined; rotate?: csstype.Property.Rotate | undefined; rowGap?: csstype.Property.RowGap | undefined; rubyAlign?: csstype.Property.RubyAlign | undefined; rubyMerge?: csstype.Property.RubyMerge | undefined; rubyPosition?: csstype.Property.RubyPosition | undefined; scale?: csstype.Property.Scale | undefined; scrollBehavior?: csstype.Property.ScrollBehavior | undefined; scrollMargin?: csstype.Property.ScrollMargin | undefined; scrollMarginBlock?: csstype.Property.ScrollMarginBlock | undefined; scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd | undefined; scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart | undefined; scrollMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollMarginInline?: csstype.Property.ScrollMarginInline | undefined; scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd | undefined; scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart | undefined; scrollMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollPadding?: csstype.Property.ScrollPadding | undefined; scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock | undefined; scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd | undefined; scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart | undefined; scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom | undefined; scrollPaddingInline?: csstype.Property.ScrollPaddingInline | undefined; scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd | undefined; scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart | undefined; scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft | undefined; scrollPaddingRight?: csstype.Property.ScrollPaddingRight | undefined; scrollPaddingTop?: csstype.Property.ScrollPaddingTop | undefined; scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined; scrollSnapMargin?: csstype.Property.ScrollMargin | undefined; scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollSnapMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollSnapMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined; scrollSnapType?: csstype.Property.ScrollSnapType | undefined; scrollbarColor?: csstype.Property.ScrollbarColor | undefined; scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined; scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined; shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined; shapeMargin?: csstype.Property.ShapeMargin | undefined; shapeOutside?: csstype.Property.ShapeOutside | undefined; tabSize?: csstype.Property.TabSize | undefined; tableLayout?: csstype.Property.TableLayout | undefined; textAlign?: csstype.Property.TextAlign | undefined; textAlignLast?: csstype.Property.TextAlignLast | undefined; textCombineUpright?: csstype.Property.TextCombineUpright | undefined; textDecorationColor?: csstype.Property.TextDecorationColor | undefined; textDecorationLine?: csstype.Property.TextDecorationLine | undefined; textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined; textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; textDecorationThickness?: csstype.Property.TextDecorationThickness | undefined; textDecorationWidth?: csstype.Property.TextDecorationThickness | undefined; textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; textIndent?: csstype.Property.TextIndent | undefined; textJustify?: csstype.Property.TextJustify | undefined; textOrientation?: csstype.Property.TextOrientation | undefined; textOverflow?: csstype.Property.TextOverflow | undefined; textRendering?: csstype.Property.TextRendering | undefined; textShadow?: csstype.Property.TextShadow | undefined; textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; textTransform?: csstype.Property.TextTransform | undefined; textUnderlineOffset?: csstype.Property.TextUnderlineOffset | undefined; textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; top?: csstype.Property.Top | undefined; touchAction?: csstype.Property.TouchAction | undefined; transform?: csstype.Property.Transform | undefined; transformBox?: csstype.Property.TransformBox | undefined; transformOrigin?: csstype.Property.TransformOrigin | undefined; transformStyle?: csstype.Property.TransformStyle | undefined; transitionDelay?: csstype.Property.TransitionDelay | undefined; transitionDuration?: csstype.Property.TransitionDuration | undefined; transitionProperty?: csstype.Property.TransitionProperty | undefined; transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; translate?: csstype.Property.Translate | undefined; unicodeBidi?: csstype.Property.UnicodeBidi | undefined; userSelect?: csstype.Property.UserSelect | undefined; verticalAlign?: csstype.Property.VerticalAlign | undefined; visibility?: csstype.Property.Visibility | undefined; whiteSpace?: csstype.Property.WhiteSpace | undefined; widows?: csstype.Property.Widows | undefined; width?: csstype.Property.Width | undefined; willChange?: csstype.Property.WillChange | undefined; wordBreak?: csstype.Property.WordBreak | undefined; wordSpacing?: csstype.Property.WordSpacing | undefined; wordWrap?: csstype.Property.WordWrap | undefined; writingMode?: csstype.Property.WritingMode | undefined; zIndex?: csstype.Property.ZIndex | undefined; zoom?: csstype.Property.Zoom | undefined; all?: csstype.Globals | undefined; animation?: csstype.Property.Animation | undefined; background?: csstype.Property.Background | undefined; backgroundPosition?: csstype.Property.BackgroundPosition | undefined; border?: csstype.Property.Border | undefined; borderBlock?: csstype.Property.BorderBlock | undefined; borderBlockEnd?: csstype.Property.BorderBlockEnd | undefined; borderBlockStart?: csstype.Property.BorderBlockStart | undefined; borderBottom?: csstype.Property.BorderBottom | undefined; borderColor?: csstype.Property.BorderColor | undefined; borderImage?: csstype.Property.BorderImage | undefined; borderInline?: csstype.Property.BorderInline | undefined; borderInlineEnd?: csstype.Property.BorderInlineEnd | undefined; borderInlineStart?: csstype.Property.BorderInlineStart | undefined; borderLeft?: csstype.Property.BorderLeft | undefined; borderRadius?: csstype.Property.BorderRadius | undefined; borderRight?: csstype.Property.BorderRight | undefined; borderStyle?: csstype.Property.BorderStyle | undefined; borderTop?: csstype.Property.BorderTop | undefined; borderWidth?: csstype.Property.BorderWidth | undefined; columnRule?: csstype.Property.ColumnRule | undefined; columns?: csstype.Property.Columns | undefined; flex?: csstype.Property.Flex | undefined; flexFlow?: csstype.Property.FlexFlow | undefined; font?: csstype.Property.Font | undefined; gap?: csstype.Property.Gap | undefined; grid?: csstype.Property.Grid | undefined; gridArea?: csstype.Property.GridArea | undefined; gridColumn?: csstype.Property.GridColumn | undefined; gridRow?: csstype.Property.GridRow | undefined; gridTemplate?: csstype.Property.GridTemplate | undefined; lineClamp?: csstype.Property.LineClamp | undefined; listStyle?: csstype.Property.ListStyle | undefined; margin?: csstype.Property.Margin | undefined; mask?: csstype.Property.Mask | undefined; maskBorder?: csstype.Property.MaskBorder | undefined; motion?: csstype.Property.Offset | undefined; offset?: csstype.Property.Offset | undefined; outline?: csstype.Property.Outline | undefined; overflow?: csstype.Property.Overflow | undefined; overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined; padding?: csstype.Property.Padding | undefined; placeItems?: csstype.Property.PlaceItems | undefined; placeSelf?: csstype.Property.PlaceSelf | undefined; textDecoration?: csstype.Property.TextDecoration | undefined; textEmphasis?: csstype.Property.TextEmphasis | undefined; transition?: csstype.Property.Transition | undefined; MozAnimationDelay?: csstype.Property.AnimationDelay | undefined; MozAnimationDirection?: csstype.Property.AnimationDirection | undefined; MozAnimationDuration?: csstype.Property.AnimationDuration | undefined; MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; MozAnimationName?: csstype.Property.AnimationName | undefined; MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; MozAppearance?: csstype.Property.MozAppearance | undefined; MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined; MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined; MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined; MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined; MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined; MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined; MozBoxSizing?: csstype.Property.BoxSizing | undefined; MozColumnCount?: csstype.Property.ColumnCount | undefined; MozColumnFill?: csstype.Property.ColumnFill | undefined; MozColumnGap?: csstype.Property.ColumnGap | undefined; MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; MozColumnWidth?: csstype.Property.ColumnWidth | undefined; MozContextProperties?: csstype.Property.MozContextProperties | undefined; MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; MozHyphens?: csstype.Property.Hyphens | undefined; MozImageRegion?: csstype.Property.MozImageRegion | undefined; MozMarginEnd?: csstype.Property.MarginInlineEnd | undefined; MozMarginStart?: csstype.Property.MarginInlineStart | undefined; MozOrient?: csstype.Property.MozOrient | undefined; MozOsxFontSmoothing?: csstype.Property.FontSmooth | undefined; MozPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; MozPaddingStart?: csstype.Property.PaddingInlineStart | undefined; MozPerspective?: csstype.Property.Perspective | undefined; MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; MozStackSizing?: csstype.Property.MozStackSizing | undefined; MozTabSize?: csstype.Property.TabSize | undefined; MozTextBlink?: csstype.Property.MozTextBlink | undefined; MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; MozTransformOrigin?: csstype.Property.TransformOrigin | undefined; MozTransformStyle?: csstype.Property.TransformStyle | undefined; MozTransitionDelay?: csstype.Property.TransitionDelay | undefined; MozTransitionDuration?: csstype.Property.TransitionDuration | undefined; MozTransitionProperty?: csstype.Property.TransitionProperty | undefined; MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; MozUserFocus?: csstype.Property.MozUserFocus | undefined; MozUserModify?: csstype.Property.MozUserModify | undefined; MozUserSelect?: csstype.Property.UserSelect | undefined; MozWindowDragging?: csstype.Property.MozWindowDragging | undefined; MozWindowShadow?: csstype.Property.MozWindowShadow | undefined; msAccelerator?: csstype.Property.MsAccelerator | undefined; msAlignSelf?: csstype.Property.AlignSelf | undefined; msBlockProgression?: csstype.Property.MsBlockProgression | undefined; msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined; msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined; msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined; msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined; msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined; msContentZooming?: csstype.Property.MsContentZooming | undefined; msFilter?: csstype.Property.MsFilter | undefined; msFlexDirection?: csstype.Property.FlexDirection | undefined; msFlexPositive?: csstype.Property.FlexGrow | undefined; msFlowFrom?: csstype.Property.MsFlowFrom | undefined; msFlowInto?: csstype.Property.MsFlowInto | undefined; msGridColumns?: csstype.Property.MsGridColumns | undefined; msGridRows?: csstype.Property.MsGridRows | undefined; msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined; msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined; msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined; msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone | undefined; msHyphens?: csstype.Property.Hyphens | undefined; msImeAlign?: csstype.Property.MsImeAlign | undefined; msJustifySelf?: csstype.Property.JustifySelf | undefined; msLineBreak?: csstype.Property.LineBreak | undefined; msOrder?: csstype.Property.Order | undefined; msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined; msOverflowX?: csstype.Property.OverflowX | undefined; msOverflowY?: csstype.Property.OverflowY | undefined; msScrollChaining?: csstype.Property.MsScrollChaining | undefined; msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax | undefined; msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin | undefined; msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax | undefined; msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin | undefined; msScrollRails?: csstype.Property.MsScrollRails | undefined; msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined; msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined; msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined; msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined; msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined; msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined; msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined; msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined; msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined; msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined; msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined; msTextAutospace?: csstype.Property.MsTextAutospace | undefined; msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined; msTextOverflow?: csstype.Property.TextOverflow | undefined; msTouchAction?: csstype.Property.TouchAction | undefined; msTouchSelect?: csstype.Property.MsTouchSelect | undefined; msTransform?: csstype.Property.Transform | undefined; msTransformOrigin?: csstype.Property.TransformOrigin | undefined; msTransitionDelay?: csstype.Property.TransitionDelay | undefined; msTransitionDuration?: csstype.Property.TransitionDuration | undefined; msTransitionProperty?: csstype.Property.TransitionProperty | undefined; msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; msUserSelect?: csstype.Property.MsUserSelect | undefined; msWordBreak?: csstype.Property.WordBreak | undefined; msWrapFlow?: csstype.Property.MsWrapFlow | undefined; msWrapMargin?: csstype.Property.MsWrapMargin | undefined; msWrapThrough?: csstype.Property.MsWrapThrough | undefined; msWritingMode?: csstype.Property.WritingMode | undefined; WebkitAlignContent?: csstype.Property.AlignContent | undefined; WebkitAlignItems?: csstype.Property.AlignItems | undefined; WebkitAlignSelf?: csstype.Property.AlignSelf | undefined; WebkitAnimationDelay?: csstype.Property.AnimationDelay | undefined; WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined; WebkitAnimationDuration?: csstype.Property.AnimationDuration | undefined; WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; WebkitAnimationName?: csstype.Property.AnimationName | undefined; WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; WebkitAppearance?: csstype.Property.WebkitAppearance | undefined; WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined; WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined; WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; WebkitBackgroundSize?: csstype.Property.BackgroundSize | undefined; WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined; WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined; WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth | undefined; WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined; WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; WebkitBoxReflect?: csstype.Property.WebkitBoxReflect | undefined; WebkitBoxShadow?: csstype.Property.BoxShadow | undefined; WebkitBoxSizing?: csstype.Property.BoxSizing | undefined; WebkitClipPath?: csstype.Property.ClipPath | undefined; WebkitColumnCount?: csstype.Property.ColumnCount | undefined; WebkitColumnFill?: csstype.Property.ColumnFill | undefined; WebkitColumnGap?: csstype.Property.ColumnGap | undefined; WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined; WebkitColumnWidth?: csstype.Property.ColumnWidth | undefined; WebkitFilter?: csstype.Property.Filter | undefined; WebkitFlexBasis?: csstype.Property.FlexBasis | undefined; WebkitFlexDirection?: csstype.Property.FlexDirection | undefined; WebkitFlexGrow?: csstype.Property.FlexGrow | undefined; WebkitFlexShrink?: csstype.Property.FlexShrink | undefined; WebkitFlexWrap?: csstype.Property.FlexWrap | undefined; WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; WebkitFontKerning?: csstype.Property.FontKerning | undefined; WebkitFontSmoothing?: csstype.Property.FontSmooth | undefined; WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; WebkitHyphens?: csstype.Property.Hyphens | undefined; WebkitInitialLetter?: csstype.Property.InitialLetter | undefined; WebkitJustifyContent?: csstype.Property.JustifyContent | undefined; WebkitLineBreak?: csstype.Property.LineBreak | undefined; WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined; WebkitMarginEnd?: csstype.Property.MarginInlineEnd | undefined; WebkitMarginStart?: csstype.Property.MarginInlineStart | undefined; WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined; WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset | undefined; WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined; WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined; WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined; WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth | undefined; WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined; WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined; WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined; WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined; WebkitMaskPosition?: csstype.Property.WebkitMaskPosition | undefined; WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX | undefined; WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY | undefined; WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined; WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined; WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined; WebkitMaskSize?: csstype.Property.WebkitMaskSize | undefined; WebkitMaxInlineSize?: csstype.Property.MaxInlineSize | undefined; WebkitOrder?: csstype.Property.Order | undefined; WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined; WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; WebkitPaddingStart?: csstype.Property.PaddingInlineStart | undefined; WebkitPerspective?: csstype.Property.Perspective | undefined; WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined; WebkitRubyPosition?: csstype.Property.RubyPosition | undefined; WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined; WebkitShapeMargin?: csstype.Property.ShapeMargin | undefined; WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined; WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined; WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined; WebkitTextOrientation?: csstype.Property.TextOrientation | undefined; WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined; WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth | undefined; WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined; WebkitTransform?: csstype.Property.Transform | undefined; WebkitTransformOrigin?: csstype.Property.TransformOrigin | undefined; WebkitTransformStyle?: csstype.Property.TransformStyle | undefined; WebkitTransitionDelay?: csstype.Property.TransitionDelay | undefined; WebkitTransitionDuration?: csstype.Property.TransitionDuration | undefined; WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined; WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitUserModify?: csstype.Property.WebkitUserModify | undefined; WebkitUserSelect?: csstype.Property.UserSelect | undefined; WebkitWritingMode?: csstype.Property.WritingMode | undefined; MozAnimation?: csstype.Property.Animation | undefined; MozBorderImage?: csstype.Property.BorderImage | undefined; MozColumnRule?: csstype.Property.ColumnRule | undefined; MozColumns?: csstype.Property.Columns | undefined; MozTransition?: csstype.Property.Transition | undefined; msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined; msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined; msFlex?: csstype.Property.Flex | undefined; msScrollLimit?: csstype.Property.MsScrollLimit | undefined; msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined; msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined; msTransition?: csstype.Property.Transition | undefined; WebkitAnimation?: csstype.Property.Animation | undefined; WebkitBorderBefore?: csstype.Property.WebkitBorderBefore | undefined; WebkitBorderImage?: csstype.Property.BorderImage | undefined; WebkitBorderRadius?: csstype.Property.BorderRadius | undefined; WebkitColumnRule?: csstype.Property.ColumnRule | undefined; WebkitColumns?: csstype.Property.Columns | undefined; WebkitFlex?: csstype.Property.Flex | undefined; WebkitFlexFlow?: csstype.Property.FlexFlow | undefined; WebkitMask?: csstype.Property.WebkitMask | undefined; WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined; WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined; WebkitTextStroke?: csstype.Property.WebkitTextStroke | undefined; WebkitTransition?: csstype.Property.Transition | undefined; azimuth?: csstype.Property.Azimuth | undefined; boxAlign?: csstype.Property.BoxAlign | undefined; boxDirection?: csstype.Property.BoxDirection | undefined; boxFlex?: csstype.Property.BoxFlex | undefined; boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; boxLines?: csstype.Property.BoxLines | undefined; boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; boxOrient?: csstype.Property.BoxOrient | undefined; boxPack?: csstype.Property.BoxPack | undefined; clip?: csstype.Property.Clip | undefined; gridColumnGap?: csstype.Property.GridColumnGap | undefined; gridGap?: csstype.Property.GridGap | undefined; gridRowGap?: csstype.Property.GridRowGap | undefined; imeMode?: csstype.Property.ImeMode | undefined; offsetBlock?: csstype.Property.InsetBlock | undefined; offsetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; offsetBlockStart?: csstype.Property.InsetBlockStart | undefined; offsetInline?: csstype.Property.InsetInline | undefined; offsetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; offsetInlineStart?: csstype.Property.InsetInlineStart | undefined; scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate | undefined; scrollSnapDestination?: csstype.Property.ScrollSnapDestination | undefined; scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined; scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined; scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined; scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined; scrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined; KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined; KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined; KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined; KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; KhtmlBoxLines?: csstype.Property.BoxLines | undefined; KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined; KhtmlBoxPack?: csstype.Property.BoxPack | undefined; KhtmlLineBreak?: csstype.Property.LineBreak | undefined; KhtmlOpacity?: csstype.Property.Opacity | undefined; KhtmlUserSelect?: csstype.Property.UserSelect | undefined; MozBackgroundClip?: csstype.Property.BackgroundClip | undefined; MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined; MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; MozBackgroundSize?: csstype.Property.BackgroundSize | undefined; MozBinding?: csstype.Property.MozBinding | undefined; MozBorderRadius?: csstype.Property.BorderRadius | undefined; MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius | undefined; MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius | undefined; MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius | undefined; MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius | undefined; MozBoxAlign?: csstype.Property.BoxAlign | undefined; MozBoxDirection?: csstype.Property.BoxDirection | undefined; MozBoxFlex?: csstype.Property.BoxFlex | undefined; MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; MozBoxOrient?: csstype.Property.BoxOrient | undefined; MozBoxPack?: csstype.Property.BoxPack | undefined; MozBoxShadow?: csstype.Property.BoxShadow | undefined; MozFloatEdge?: csstype.Property.MozFloatEdge | undefined; MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined; MozOpacity?: csstype.Property.Opacity | undefined; MozOutline?: csstype.Property.Outline | undefined; MozOutlineColor?: csstype.Property.OutlineColor | undefined; MozOutlineRadius?: csstype.Property.MozOutlineRadius | undefined; MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft | undefined; MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright | undefined; MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft | undefined; MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright | undefined; MozOutlineStyle?: csstype.Property.OutlineStyle | undefined; MozOutlineWidth?: csstype.Property.OutlineWidth | undefined; MozTextAlignLast?: csstype.Property.TextAlignLast | undefined; MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; MozUserInput?: csstype.Property.MozUserInput | undefined; msImeMode?: csstype.Property.ImeMode | undefined; msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined; OAnimation?: csstype.Property.Animation | undefined; OAnimationDelay?: csstype.Property.AnimationDelay | undefined; OAnimationDirection?: csstype.Property.AnimationDirection | undefined; OAnimationDuration?: csstype.Property.AnimationDuration | undefined; OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; OAnimationName?: csstype.Property.AnimationName | undefined; OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; OBackgroundSize?: csstype.Property.BackgroundSize | undefined; OBorderImage?: csstype.Property.BorderImage | undefined; OObjectFit?: csstype.Property.ObjectFit | undefined; OObjectPosition?: csstype.Property.ObjectPosition | undefined; OTabSize?: csstype.Property.TabSize | undefined; OTextOverflow?: csstype.Property.TextOverflow | undefined; OTransform?: csstype.Property.Transform | undefined; OTransformOrigin?: csstype.Property.TransformOrigin | undefined; OTransition?: csstype.Property.Transition | undefined; OTransitionDelay?: csstype.Property.TransitionDelay | undefined; OTransitionDuration?: csstype.Property.TransitionDuration | undefined; OTransitionProperty?: csstype.Property.TransitionProperty | undefined; OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitBoxAlign?: csstype.Property.BoxAlign | undefined; WebkitBoxDirection?: csstype.Property.BoxDirection | undefined; WebkitBoxFlex?: csstype.Property.BoxFlex | undefined; WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; WebkitBoxLines?: csstype.Property.BoxLines | undefined; WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; WebkitBoxOrient?: csstype.Property.BoxOrient | undefined; WebkitBoxPack?: csstype.Property.BoxPack | undefined; WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined; WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined; alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined; baselineShift?: csstype.Property.BaselineShift | undefined; clipRule?: csstype.Property.ClipRule | undefined; colorInterpolation?: csstype.Property.ColorInterpolation | undefined; colorRendering?: csstype.Property.ColorRendering | undefined; dominantBaseline?: csstype.Property.DominantBaseline | undefined; fill?: csstype.Property.Fill | undefined; fillOpacity?: csstype.Property.FillOpacity | undefined; fillRule?: csstype.Property.FillRule | undefined; floodColor?: csstype.Property.FloodColor | undefined; floodOpacity?: csstype.Property.FloodOpacity | undefined; glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined; lightingColor?: csstype.Property.LightingColor | undefined; marker?: csstype.Property.Marker | undefined; markerEnd?: csstype.Property.MarkerEnd | undefined; markerMid?: csstype.Property.MarkerMid | undefined; markerStart?: csstype.Property.MarkerStart | undefined; shapeRendering?: csstype.Property.ShapeRendering | undefined; stopColor?: csstype.Property.StopColor | undefined; stopOpacity?: csstype.Property.StopOpacity | undefined; stroke?: csstype.Property.Stroke | undefined; strokeDasharray?: csstype.Property.StrokeDasharray | undefined; strokeDashoffset?: csstype.Property.StrokeDashoffset | undefined; strokeLinecap?: csstype.Property.StrokeLinecap | undefined; strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined; strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined; strokeOpacity?: csstype.Property.StrokeOpacity | undefined; strokeWidth?: csstype.Property.StrokeWidth | undefined; textAnchor?: csstype.Property.TextAnchor | undefined; vectorEffect?: csstype.Property.VectorEffect | undefined; }; render(): react_jsx_runtime.JSX.Element; updateColor(point: PointType): { a: number; h: number; s: number; v: number; }; } export { ColorPicker, ColorPickerProps, HueSpectrum, HueSpectrumProps, SaturationSpectrum, SaturationSpectrumProps };