/** ℹ️ This enum is non-exhaustive. */ export declare const OrderTopLevelStatus: { readonly Received: "received"; readonly CollectingSample: "collecting_sample"; readonly SampleWithLab: "sample_with_lab"; readonly Completed: "completed"; readonly Cancelled: "cancelled"; readonly Failed: "failed"; }; export type OrderTopLevelStatus = (typeof OrderTopLevelStatus)[keyof typeof OrderTopLevelStatus];