import { BadgeProps } from '.././components/badge/Badge.vue.d'; export type SupplyStatus = 'Finished Approval' | 'Approved' | 'Completed' | 'Received' | 'Waiting for Approval' | 'Waiting for Handover' | 'Waiting for Handover-In' | 'Waiting for Handover-Out' | 'Waiting for Verification' | 'Waiting for Confirmation' | 'Completion Approval' | 'Need Approval' | 'Rejected' | 'Canceled' | 'In Reception' | 'Available' | 'On Checkout Process' | 'On Transfer' | 'In Stock Opname' | 'Defect' | 'Damaged / Missing' | 'Damaged' | 'Missing' | 'Expired' | 'Unplaced' | 'TAG Reported' | 'Not Paired Yet' | 'In Supplier Return Process' | 'On Disposal Process' | 'Disposed' | 'Checked Out' | 'Exchanged' | 'Grace Period' | 'Overdue' | 'In Transit' | 'Returned' | 'Placed' | 'Unverified' | 'Verified' | 'Updated'; export default function getStatusSeverity(status: SupplyStatus): BadgeProps['severity'];