import type * as Vital from "../../../../../api/index.js"; import * as core from "../../../../../core/index.js"; import type * as serializers from "../../../../index.js"; import { AoEAnswer } from "../../../../types/AoEAnswer.js"; import { Billing } from "../../../../types/Billing.js"; import { Consent } from "../../../../types/Consent.js"; import { HealthInsuranceCreateRequest } from "../../../../types/HealthInsuranceCreateRequest.js"; import { LabTestCollectionMethod } from "../../../../types/LabTestCollectionMethod.js"; import { OrderSetRequest } from "../../../../types/OrderSetRequest.js"; import { PatientAddressWithValidation } from "../../../../types/PatientAddressWithValidation.js"; import { PatientDetailsWithValidation } from "../../../../types/PatientDetailsWithValidation.js"; import { PhysicianCreateRequest } from "../../../../types/PhysicianCreateRequest.js"; export declare const CreateOrderRequestCompatible: core.serialization.Schema>; export declare namespace CreateOrderRequestCompatible { interface Raw { user_id: string; lab_test_id?: string | null; order_set?: OrderSetRequest.Raw | null; collection_method?: LabTestCollectionMethod.Raw | null; physician?: PhysicianCreateRequest.Raw | null; health_insurance?: HealthInsuranceCreateRequest.Raw | null; priority?: boolean | null; billing_type?: Billing.Raw | null; icd_codes?: string[] | null; consents?: Consent.Raw[] | null; activate_by?: string | null; aoe_answers?: AoEAnswer.Raw[] | null; passthrough?: string | null; lab_account_id?: string | null; creator_member_id?: string | null; patient_details: PatientDetailsWithValidation.Raw; patient_address: PatientAddressWithValidation.Raw; } }