/** ℹ️ This enum is non-exhaustive. */ export declare const OrderStatus: { readonly ReceivedWalkInTestOrdered: "received.walk_in_test.ordered"; readonly ReceivedWalkInTestRequisitionCreated: "received.walk_in_test.requisition_created"; readonly ReceivedWalkInTestRequisitionBypassed: "received.walk_in_test.requisition_bypassed"; readonly CompletedWalkInTestCompleted: "completed.walk_in_test.completed"; readonly SampleWithLabWalkInTestPartialResults: "sample_with_lab.walk_in_test.partial_results"; readonly FailedWalkInTestSampleError: "failed.walk_in_test.sample_error"; readonly CancelledWalkInTestCancelled: "cancelled.walk_in_test.cancelled"; readonly CollectingSampleWalkInTestAppointmentPending: "collecting_sample.walk_in_test.appointment_pending"; readonly CollectingSampleWalkInTestAppointmentScheduled: "collecting_sample.walk_in_test.appointment_scheduled"; readonly CollectingSampleWalkInTestAppointmentCancelled: "collecting_sample.walk_in_test.appointment_cancelled"; readonly CollectingSampleWalkInTestRedrawAvailable: "collecting_sample.walk_in_test.redraw_available"; readonly ReceivedAtHomePhlebotomyOrdered: "received.at_home_phlebotomy.ordered"; readonly ReceivedAtHomePhlebotomyRequisitionCreated: "received.at_home_phlebotomy.requisition_created"; readonly ReceivedAtHomePhlebotomyRequisitionBypassed: "received.at_home_phlebotomy.requisition_bypassed"; readonly CollectingSampleAtHomePhlebotomyAppointmentPending: "collecting_sample.at_home_phlebotomy.appointment_pending"; readonly CollectingSampleAtHomePhlebotomyAppointmentScheduled: "collecting_sample.at_home_phlebotomy.appointment_scheduled"; readonly CollectingSampleAtHomePhlebotomyDrawCompleted: "collecting_sample.at_home_phlebotomy.draw_completed"; readonly CollectingSampleAtHomePhlebotomyAppointmentCancelled: "collecting_sample.at_home_phlebotomy.appointment_cancelled"; readonly CompletedAtHomePhlebotomyCompleted: "completed.at_home_phlebotomy.completed"; readonly SampleWithLabAtHomePhlebotomyPartialResults: "sample_with_lab.at_home_phlebotomy.partial_results"; readonly CancelledAtHomePhlebotomyCancelled: "cancelled.at_home_phlebotomy.cancelled"; readonly FailedAtHomePhlebotomySampleError: "failed.at_home_phlebotomy.sample_error"; readonly ReceivedTestkitOrdered: "received.testkit.ordered"; readonly ReceivedTestkitAwaitingRegistration: "received.testkit.awaiting_registration"; readonly ReceivedTestkitRequisitionCreated: "received.testkit.requisition_created"; readonly ReceivedTestkitRequisitionBypassed: "received.testkit.requisition_bypassed"; readonly ReceivedTestkitRegistered: "received.testkit.registered"; readonly CollectingSampleTestkitTransitCustomer: "collecting_sample.testkit.transit_customer"; readonly CollectingSampleTestkitOutForDelivery: "collecting_sample.testkit.out_for_delivery"; readonly CollectingSampleTestkitWithCustomer: "collecting_sample.testkit.with_customer"; readonly CollectingSampleTestkitTransitLab: "collecting_sample.testkit.transit_lab"; readonly SampleWithLabTestkitDeliveredToLab: "sample_with_lab.testkit.delivered_to_lab"; readonly CompletedTestkitCompleted: "completed.testkit.completed"; readonly FailedTestkitFailureToDeliverToCustomer: "failed.testkit.failure_to_deliver_to_customer"; readonly FailedTestkitFailureToDeliverToLab: "failed.testkit.failure_to_deliver_to_lab"; readonly FailedTestkitSampleError: "failed.testkit.sample_error"; readonly FailedTestkitLost: "failed.testkit.lost"; readonly CancelledTestkitCancelled: "cancelled.testkit.cancelled"; readonly CancelledTestkitDoNotProcess: "cancelled.testkit.do_not_process"; readonly CollectingSampleTestkitProblemInTransitCustomer: "collecting_sample.testkit.problem_in_transit_customer"; readonly CollectingSampleTestkitProblemInTransitLab: "collecting_sample.testkit.problem_in_transit_lab"; readonly ReceivedOnSiteCollectionOrdered: "received.on_site_collection.ordered"; readonly ReceivedOnSiteCollectionRequisitionCreated: "received.on_site_collection.requisition_created"; readonly ReceivedOnSiteCollectionRequisitionBypassed: "received.on_site_collection.requisition_bypassed"; readonly SampleWithLabOnSiteCollectionDrawCompleted: "sample_with_lab.on_site_collection.draw_completed"; readonly CompletedOnSiteCollectionCompleted: "completed.on_site_collection.completed"; readonly CancelledOnSiteCollectionCancelled: "cancelled.on_site_collection.cancelled"; readonly SampleWithLabOnSiteCollectionPartialResults: "sample_with_lab.on_site_collection.partial_results"; readonly FailedOnSiteCollectionSampleError: "failed.on_site_collection.sample_error"; }; export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];