/**
 * FHIR Period
 * https://www.hl7.org/fhir/datatypes.html#Period
 * A time period defined by a start and end date/time.
 */
export interface Period {
    /**
     * Starting time with inclusive boundary.
     * FHIR Path: Period.start
     * Cardinality: 0..1 (optional)
     * Type: dateTime
     * Description: The start of the period. The boundary is inclusive.
     */
    start?: string;
    /**
     * End time with inclusive boundary, if not ongoing.
     * FHIR Path: Period.end
     * Cardinality: 0..1 (optional)
     * Type: dateTime
     * Description: The end of the period. If ongoing, end may be missing.
     */
    end?: string;
}
//# sourceMappingURL=Period.d.ts.map