import { TextStyle, ViewStyle } from 'react-native' export interface StoryCategoryStyle extends StoryContainerStyle { container: ViewStyle meta: TextStyle category: TextStyle component: TextStyle } export enum StoryCategory { ELEMENT = 'Elements', FUNDAMENTAL = 'Fundamentals', STACK = 'Stacks', SCREEN = 'Screens', } export interface StoryContainerStyle { container: ViewStyle }