/**
 * Define Status Type
 */
export type BadgeStatusType = 'danger' | 'warning' | 'waiting' | 'success' | 'info' | 'common';
export type BadgePositionType = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
