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