import { TextStyle, ViewStyle } from 'react-native'; import { textSize } from '../Text/Text'; import { statusColor } from './statusStyle'; export type StatusTypes = 'curved' | 'rounded' | 'flat'; type Props = { color?: statusColor; label: string; overrideStyle?: ViewStyle | TextStyle; size?: textSize; type?: StatusTypes; }; declare const Status: (props: Props) => JSX.Element; export default Status;