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