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 SvgPropertiesHyphenFallback { "alignment-baseline"?: AlignmentBaselineProperty | AlignmentBaselineProperty[]; "baseline-shift"?: BaselineShiftProperty | BaselineShiftProperty[]; clip?: ClipProperty | ClipProperty[]; "clip-path"?: ClipPathProperty | ClipPathProperty[]; "clip-rule"?: ClipRuleProperty | ClipRuleProperty[]; color?: ColorProperty | ColorProperty[]; "color-interpolation"?: ColorInterpolationProperty | ColorInterpolationProperty[]; "color-rendering"?: ColorRenderingProperty | ColorRenderingProperty[]; cursor?: CursorProperty | CursorProperty[]; direction?: DirectionProperty | DirectionProperty[]; display?: DisplayProperty | DisplayProperty[]; "dominant-baseline"?: DominantBaselineProperty | DominantBaselineProperty[]; fill?: FillProperty | FillProperty[]; "fill-opacity"?: FillOpacityProperty | FillOpacityProperty[]; "fill-rule"?: FillRuleProperty | FillRuleProperty[]; filter?: FilterProperty | FilterProperty[]; "flood-color"?: FloodColorProperty | FloodColorProperty[]; "flood-opacity"?: FloodOpacityProperty | FloodOpacityProperty[]; font?: FontProperty | FontProperty[]; "font-family"?: FontFamilyProperty | FontFamilyProperty[]; "font-size"?: FontSizeProperty | FontSizeProperty[]; "font-size-adjust"?: FontSizeAdjustProperty | FontSizeAdjustProperty[]; "font-stretch"?: FontStretchProperty | FontStretchProperty[]; "font-style"?: FontStyleProperty | FontStyleProperty[]; "font-variant"?: FontVariantProperty | FontVariantProperty[]; "font-weight"?: FontWeightProperty | FontWeightProperty[]; "glyph-orientation-vertical"?: GlyphOrientationVerticalProperty | GlyphOrientationVerticalProperty[]; "image-rendering"?: ImageRenderingProperty | ImageRenderingProperty[]; "letter-spacing"?: LetterSpacingProperty | LetterSpacingProperty[]; "lighting-color"?: LightingColorProperty | LightingColorProperty[]; "line-height"?: LineHeightProperty | LineHeightProperty[]; marker?: MarkerProperty | MarkerProperty[]; "marker-end"?: MarkerEndProperty | MarkerEndProperty[]; "marker-mid"?: MarkerMidProperty | MarkerMidProperty[]; "marker-start"?: MarkerStartProperty | MarkerStartProperty[]; mask?: MaskProperty | MaskProperty[]; opacity?: OpacityProperty | OpacityProperty[]; overflow?: OverflowProperty | OverflowProperty[]; "paint-order"?: PaintOrderProperty | PaintOrderProperty[]; "pointer-events"?: PointerEventsProperty | PointerEventsProperty[]; "shape-rendering"?: ShapeRenderingProperty | ShapeRenderingProperty[]; "stop-color"?: StopColorProperty | StopColorProperty[]; "stop-opacity"?: StopOpacityProperty | StopOpacityProperty[]; stroke?: StrokeProperty | StrokeProperty[]; "stroke-dasharray"?: StrokeDasharrayProperty | StrokeDasharrayProperty[]; "stroke-dashoffset"?: StrokeDashoffsetProperty | StrokeDashoffsetProperty[]; "stroke-linecap"?: StrokeLinecapProperty | StrokeLinecapProperty[]; "stroke-linejoin"?: StrokeLinejoinProperty | StrokeLinejoinProperty[]; "stroke-miterlimit"?: StrokeMiterlimitProperty | StrokeMiterlimitProperty[]; "stroke-opacity"?: StrokeOpacityProperty | StrokeOpacityProperty[]; "stroke-width"?: StrokeWidthProperty | StrokeWidthProperty[]; "text-anchor"?: TextAnchorProperty | TextAnchorProperty[]; "text-decoration"?: TextDecorationProperty | TextDecorationProperty[]; "text-rendering"?: TextRenderingProperty | TextRenderingProperty[]; "unicode-bidi"?: UnicodeBidiProperty | UnicodeBidiProperty[]; "vector-effect"?: VectorEffectProperty | VectorEffectProperty[]; visibility?: VisibilityProperty | VisibilityProperty[]; "white-space"?: WhiteSpaceProperty | WhiteSpaceProperty[]; "word-spacing"?: WordSpacingProperty | WordSpacingProperty[]; "writing-mode"?: WritingModeProperty | WritingModeProperty[]; }