/**
 * @name RequestPriority
 * @description The clinical priority of a diagnostic order.
 * @description routine | urgent | asap | stat
 * @see <a href="https://hl7.org/fhir/R4/valueset-request-priority.html">RequestPriority</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export declare enum RequestPriorityEnum {
    ROUTINE = "routine",
    URGENT = "urgent",
    ASAP = "asap",
    STAT = "stat"
}
