/** The method used to perform a lab test. ℹ️ This enum is non-exhaustive. */ export declare const LabTestCollectionMethod: { readonly Testkit: "testkit"; readonly WalkInTest: "walk_in_test"; readonly AtHomePhlebotomy: "at_home_phlebotomy"; readonly OnSiteCollection: "on_site_collection"; }; export type LabTestCollectionMethod = (typeof LabTestCollectionMethod)[keyof typeof LabTestCollectionMethod];