/** ℹ️ This enum is non-exhaustive. */ export declare const Interpretation: { readonly Normal: "normal"; readonly Abnormal: "abnormal"; readonly Critical: "critical"; readonly Unknown: "unknown"; }; export type Interpretation = (typeof Interpretation)[keyof typeof Interpretation];