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