import type * as Vital from "../../../../../api/index.js"; import * as core from "../../../../../core/index.js"; import type * as serializers from "../../../../index.js"; import { Billing } from "../../../../types/Billing.js"; import { LabTestCollectionMethod } from "../../../../types/LabTestCollectionMethod.js"; import { OrderSetRequest } from "../../../../types/OrderSetRequest.js"; import { PatientAddress } from "../../../../types/PatientAddress.js"; import { PatientDetailsWithValidation } from "../../../../types/PatientDetailsWithValidation.js"; import { PhysicianCreateRequest } from "../../../../types/PhysicianCreateRequest.js"; export declare const ImportOrderBody: core.serialization.Schema; export declare namespace ImportOrderBody { interface Raw { user_id: string; billing_type: Billing.Raw; order_set: OrderSetRequest.Raw; collection_method: LabTestCollectionMethod.Raw; physician?: PhysicianCreateRequest.Raw | null; patient_details: PatientDetailsWithValidation.Raw; patient_address: PatientAddress.Raw; sample_id: string; lab_account_id?: string | null; } }