export declare const erx: { allergySearch: (params: { name: string; }, request?: import("../../client/client").ZapEHRClientRequest | undefined) => Promise<{ readonly allergens?: readonly { readonly id?: string | undefined; readonly name?: string | undefined; readonly rxcui?: string | undefined; }[] | undefined; }>; medicationSearch: (params?: { name?: string | undefined; code?: string | undefined; after?: string | undefined; first?: number | undefined; } | undefined, request?: import("../../client/client").ZapEHRClientRequest | undefined) => Promise<{ readonly medications?: readonly { readonly brandName?: string | null | undefined; readonly codes: { readonly HCPCS?: string | null | undefined; readonly packageNDC?: string | null | undefined; readonly productNDC?: string | null | undefined; readonly rxcui?: string | null | undefined; readonly SKU?: string | null | undefined; }; readonly concept: "DRUG" | "PRODUCT" | "PACKAGE"; readonly controlled: boolean; readonly description?: string | null | undefined; readonly form?: string | null | undefined; readonly genericName?: string | null | undefined; readonly id: string; readonly manufacturer?: string | null | undefined; readonly name: string; readonly schedule?: "I" | "II" | "III" | "IV" | "V" | null | undefined; readonly strength?: string | null | undefined; readonly type?: "RX" | "OTC" | null | undefined; }[] | undefined; }>; syncPatient: (params: { patientId: string; }, request?: import("../../client/client").ZapEHRClientRequest | undefined) => Promise<{ readonly photonPatientId?: string | undefined; }>; };