import type { ImageStyle, TextStyle, ViewStyle } from 'react-native'; import type { ConfigPropertyAlias, ValueProcessor } from '../types'; /** * Intersection of every React Native style type with deprecated props stripped. * Used internally by the props builder configs to enforce that the configs * cover every valid style key. Not part of the public API. */ export type AllStyleProps = Omit; type PropertyValueConfigBase

= boolean | ConfigPropertyAlias

; type PropsBuilderPropertyConfig

= PropertyValueConfigBase

| { process: ValueProcessor[K], any>; }; export type PropsBuilderConfig

= { [K in keyof Required

]: PropsBuilderPropertyConfig; }; export {}; //# sourceMappingURL=types.d.ts.map