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