import type { StyleProp } from 'react-native'; import type { AnyRecord, PlainStyle } from '../../common'; import type { CSSAnimationProperties } from './animation'; import type { CSSTransitionProperties } from './transition'; type PickStyleProps

= Pick; export type CSSStyle = S & Partial> & Partial>; type CSSStyleProps

= { [K in keyof PickStyleProps

]: P[K] extends StyleProp ? U extends object ? StyleProp> : never : never; }; type RestProps

= { [K in keyof Omit>]: P[K]; }; export type CSSProps

= CSSStyleProps

& RestProps

; export {}; //# sourceMappingURL=props.d.ts.map