///
import { ExtendedFlexComponent, ExtendedFlexProps } from '../types';
type Props = {
/**
* The color variant.
*/
readonly variant?: 'blue' | 'green' | 'grey' | 'red' | 'yellow';
};
type StatusProps = ExtendedFlexProps;
type StatusComponent = ExtendedFlexComponent;
export { StatusComponent, StatusProps };