import { ViewStyle } from 'react-native'; import { Theme } from '../../theme'; export interface Styles { container: ViewStyle; } declare const injectTheme: ({ colors }: Theme) => Styles; export default injectTheme;