export type StatusType = 'success' | 'warning' | 'critical' | 'active'; export type WithStatusProps = { status?: StatusType; };