import { Animated, Dimensions, EasingStatic, ImageStatic, StyleSheet, TextStatic, ViewStatic } from 'react-native'; import { PlatformStatic } from './modules/Platform'; import { PixelRatioStatic } from './modules/PixelRatio'; import { TouchableStatic } from './modules/Touchable'; export declare type AnimatedStatic = typeof Animated; export declare type StyleSheetStatic = typeof StyleSheet; export declare type DimensionsStatic = typeof Dimensions; export { ViewStatic, TextStatic, PixelRatioStatic, PlatformStatic, ImageStatic, TouchableStatic, EasingStatic }; export interface InjectStatic { (api: Partial): void; } export interface ReactBitsStatic { Animated: AnimatedStatic; Dimensions: DimensionsStatic; Easing: EasingStatic; Image: ImageStatic; PixelRatio: PixelRatioStatic; Platform: PlatformStatic; StyleSheet: StyleSheetStatic; Text: TextStatic; Touchable: TouchableStatic; View: ViewStatic; inject: InjectStatic; } export declare const ReactBits: ReactBitsStatic;