/**
 * @name NoteType
 * @description The presentation types of notes.
 * @description display | print | printoper
 * @see <a href="https://hl7.org/fhir/R4/valueset-note-type.html">NoteType</a>
 * @version R4
 * @author Claudia Alarcón Lazo
 */
export type NoteTypeType = 'display' | 'print' | 'printoper';
