import { CodeStub } from '../base/CodeStub.mjs'; /** * * Represents a weekday reference used in medication regimens, optionally specifying a week number. * / */ export declare class Weekday { /** * * The coded weekday (CD-WEEKDAY). */ weekday: CodeStub | undefined; /** * * The week number within a cycle, or null if not applicable. */ weekNumber: number | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): Weekday; }