import { CodeStub } from '../base/CodeStub.mjs'; /** * * Represents a medicinal product with its intended and actually delivered codes and names. * / */ export declare class Medicinalproduct { /** * * The list of coded identifiers for the intended medicinal product. */ intendedcds: Array; /** * * The list of coded identifiers for the actually delivered medicinal product. */ deliveredcds: Array; /** * * The name of the intended medicinal product. */ intendedname: string | undefined; /** * * The name of the actually delivered medicinal product. */ deliveredname: string | undefined; /** * * The product identifier. */ productId: string | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): Medicinalproduct; }