export type StandardColor = 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning';
export type AlertColor = 'success' | 'info' | 'warning' | 'error';
export type StandardSize = 'large' | 'medium' | 'small';
export type ChipSize = 'medium' | 'small';
export type StandardVariant = 'text' | 'outlined' | 'contained';
export type StandardLabelPlacement = 'bottom' | 'start' | 'end' | 'top';
export type StandardSeverity = 'success' | 'error' | 'warning' | 'info';
export type StandardColorUnion = 'disabled' | 'action' | 'inherit' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning';
