import { CodeStub } from '../base/CodeStub.mjs'; /** * * Represents a quantity for medication administration, including the numeric amount and the unit of * administration. * / */ export declare class AdministrationQuantity { /** * * The numeric quantity to administer. */ quantity: number | undefined; /** * * The coded unit of administration (CD-ADMINISTRATIONUNIT). */ administrationUnit: CodeStub | undefined; /** * * A textual representation of the unit. */ unit: string | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): AdministrationQuantity; }