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