/** ℹ️ This enum is non-exhaustive. */ export declare const OrderLowLevelStatus: { readonly Ordered: "ordered"; readonly RequisitionCreated: "requisition_created"; readonly RequisitionBypassed: "requisition_bypassed"; readonly TransitCustomer: "transit_customer"; readonly OutForDelivery: "out_for_delivery"; readonly WithCustomer: "with_customer"; readonly TransitLab: "transit_lab"; readonly DeliveredToLab: "delivered_to_lab"; readonly Completed: "completed"; readonly FailureToDeliverToLab: "failure_to_deliver_to_lab"; readonly FailureToDeliverToCustomer: "failure_to_deliver_to_customer"; readonly ProblemInTransitLab: "problem_in_transit_lab"; readonly ProblemInTransitCustomer: "problem_in_transit_customer"; readonly SampleError: "sample_error"; readonly AppointmentScheduled: "appointment_scheduled"; readonly AppointmentCancelled: "appointment_cancelled"; readonly AppointmentPending: "appointment_pending"; readonly DrawCompleted: "draw_completed"; readonly Cancelled: "cancelled"; readonly Lost: "lost"; readonly DoNotProcess: "do_not_process"; readonly PartialResults: "partial_results"; readonly AwaitingRegistration: "awaiting_registration"; readonly Registered: "registered"; readonly RedrawAvailable: "redraw_available"; }; export type OrderLowLevelStatus = (typeof OrderLowLevelStatus)[keyof typeof OrderLowLevelStatus];