export type KbxStatusSemantic = | 'draft' | 'ready' | 'info' | 'pending' | 'processing' | 'completed' | 'hold' | 'warning' | 'error' | 'cancelled' | 'disabled' export interface KbxStatusDefinition { value: string label: string semantic: KbxStatusSemantic }