import { StringHack, AlignmentBaselineProperty, BaselineShiftProperty, ClipProperty, ClipPathProperty, ClipRuleProperty, ColorProperty, ColorInterpolationProperty, ColorRenderingProperty, CursorProperty, DirectionProperty, DisplayProperty, DominantBaselineProperty, FillProperty, FillOpacityProperty, FillRuleProperty, FilterProperty, FloodColorProperty, FloodOpacityProperty, FontProperty, FontFamilyProperty, FontSizeProperty, FontSizeAdjustProperty, FontStretchProperty, FontStyleProperty, FontVariantProperty, FontWeightProperty, GlyphOrientationVerticalProperty, ImageRenderingProperty, LetterSpacingProperty, LightingColorProperty, LineHeightProperty, MarkerProperty, MarkerEndProperty, MarkerMidProperty, MarkerStartProperty, MaskProperty, OpacityProperty, OverflowProperty, PaintOrderProperty, PointerEventsProperty, ShapeRenderingProperty, StopColorProperty, StopOpacityProperty, StrokeProperty, StrokeDasharrayProperty, StrokeDashoffsetProperty, StrokeLinecapProperty, StrokeLinejoinProperty, StrokeMiterlimitProperty, StrokeOpacityProperty, StrokeWidthProperty, TextAnchorProperty, TextDecorationProperty, TextRenderingProperty, UnicodeBidiProperty, VectorEffectProperty, VisibilityProperty, WhiteSpaceProperty, WordSpacingProperty, WritingModeProperty, } from "./index"; export interface SvgProperties { alignmentBaseline?: AlignmentBaselineProperty; baselineShift?: BaselineShiftProperty; clip?: ClipProperty; clipPath?: ClipPathProperty; clipRule?: ClipRuleProperty; color?: ColorProperty; colorInterpolation?: ColorInterpolationProperty; colorRendering?: ColorRenderingProperty; cursor?: CursorProperty; direction?: DirectionProperty; display?: DisplayProperty; dominantBaseline?: DominantBaselineProperty; fill?: FillProperty; fillOpacity?: FillOpacityProperty; fillRule?: FillRuleProperty; filter?: FilterProperty; floodColor?: FloodColorProperty; floodOpacity?: FloodOpacityProperty; font?: FontProperty; fontFamily?: FontFamilyProperty; fontSize?: FontSizeProperty; fontSizeAdjust?: FontSizeAdjustProperty; fontStretch?: FontStretchProperty; fontStyle?: FontStyleProperty; fontVariant?: FontVariantProperty; fontWeight?: FontWeightProperty; glyphOrientationVertical?: GlyphOrientationVerticalProperty; imageRendering?: ImageRenderingProperty; letterSpacing?: LetterSpacingProperty; lightingColor?: LightingColorProperty; lineHeight?: LineHeightProperty; marker?: MarkerProperty; markerEnd?: MarkerEndProperty; markerMid?: MarkerMidProperty; markerStart?: MarkerStartProperty; mask?: MaskProperty; opacity?: OpacityProperty; overflow?: OverflowProperty; paintOrder?: PaintOrderProperty; pointerEvents?: PointerEventsProperty; shapeRendering?: ShapeRenderingProperty; stopColor?: StopColorProperty; stopOpacity?: StopOpacityProperty; stroke?: StrokeProperty; strokeDasharray?: StrokeDasharrayProperty; strokeDashoffset?: StrokeDashoffsetProperty; strokeLinecap?: StrokeLinecapProperty; strokeLinejoin?: StrokeLinejoinProperty; strokeMiterlimit?: StrokeMiterlimitProperty; strokeOpacity?: StrokeOpacityProperty; strokeWidth?: StrokeWidthProperty; textAnchor?: TextAnchorProperty; textDecoration?: TextDecorationProperty; textRendering?: TextRenderingProperty; unicodeBidi?: UnicodeBidiProperty; vectorEffect?: VectorEffectProperty; visibility?: VisibilityProperty; whiteSpace?: WhiteSpaceProperty; wordSpacing?: WordSpacingProperty; writingMode?: WritingModeProperty; }