import { AlignItemsValue, AlignSelfValue, BackgroundRepeatValue, BackgroundSizeValue, CursorValue, DisplayValue, FlexDirectionValue, FlexWrapValue, FontWeightValue, JustifyContentValue, JustifySelfValue, MarginValue, ObjectFitValue, ObjectPositionValue, OverflowValue, PositionValue, TextAlignValue, VisibilityValue } from "./types"; export interface CommonStyleProperties { color?: string; fontSize?: string; fontWeight?: FontWeightValue; lineHeight?: string | number; fontFamily?: string; textAlign?: TextAlignValue; textDecoration?: string; letterSpacing?: string; backgroundColor?: string; backgroundImage?: string; backgroundSize?: BackgroundSizeValue; backgroundRepeat?: BackgroundRepeatValue; backgroundPosition?: string; display?: DisplayValue; width?: string | number; height?: string | number; margin?: string | number; padding?: string | number; border?: string; borderRadius?: string | number; overflow?: OverflowValue; marginLeft?: MarginValue; marginTop?: MarginValue; marginBottom?: MarginValue; marginRight?: MarginValue; flexDirection?: FlexDirectionValue; justifyContent?: JustifyContentValue; alignItems?: AlignItemsValue; flexWrap?: FlexWrapValue; flex?: string | number; justifySelf?: JustifySelfValue; alignSelf?: AlignSelfValue; position?: PositionValue; top?: string | number; right?: string | number; bottom?: string | number; left?: string | number; zIndex?: number; opacity?: number; boxShadow?: string; cursor?: CursorValue; transition?: string; transform?: string; visibility?: VisibilityValue; objectFit?: ObjectFitValue; objectPosition?: ObjectPositionValue; }