import { type BackgroundProps } from './background'; import { type BorderProps } from './border'; import { type ColorProps } from './color'; import { type EffectProps } from './effect'; import { type FilterProps } from './filter'; import { type FlexboxProps } from './flexbox'; import { type GridProps } from './grid'; import { type InteractivityProps } from './interactivity'; import { type LayoutProps } from './layout'; import { type ListProps } from './list'; import { type PositionProps } from './position'; import { type RingProps } from './ring'; import { type ScrollProps } from './scroll'; import { type SpaceProps } from './space'; import { type TextDecorationProps } from './text-decoration'; import { type TransformProps } from './transform'; import { type TransitionProps } from './transition'; import { type TypographyProps } from './typography'; import { type OthersProps } from './others'; import { type StylePropertyConfigs } from './types'; export type { StylePropertyConfigs }; export declare const styleProperties: StylePropertyConfigs; export interface StyleProps extends BackgroundProps, BorderProps, ColorProps, EffectProps, FilterProps, FlexboxProps, GridProps, InteractivityProps, LayoutProps, ListProps, PositionProps, RingProps, ScrollProps, SpaceProps, TextDecorationProps, TransformProps, TransitionProps, TypographyProps, OthersProps { }