import { Duration } from './Duration.mjs'; /** * * Represents the renewal information for a medication prescription, including the number of * renewals and their duration. * / */ export declare class Renewal { /** * * The number of authorized renewals. */ decimal: number | undefined; /** * * The duration of each renewal period. */ duration: Duration | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): Renewal; }