import { ViewStyle } from 'react-native'; import { Theme } from '../../theme'; export interface Styles { textInput: ViewStyle; textInputDisabled: ViewStyle; textInputFocused: ViewStyle; textInputWithError: ViewStyle; } declare const injectTheme: ({ colors, radiuses, spacing, typography }: Theme) => Styles; export default injectTheme;