/**
 * Every named SI unit currently shipped — both the 7 base units and the 19 standard derived
 * units (N, Pa, J, W, C, V, F, Ω, S, Wb, T, H, Hz, lm, lx, Bq, Gy, Sv, kat).
 *
 * Suitable as a default registry for {@link unit_matrix_to_string} / {@link format_quantity}
 * when the caller wants compound quantities expressed in their canonical scientific shorthand
 * (e.g. a Volt matrix renders as `V` rather than `kg·m^2/s^3·A`).
 *
 * Order matters: derived units appear before base units so the decomposition prefers
 * shorthand over base expansion. Among derived units that share the same matrix
 * (e.g. {@link HERTZ} / {@link BECQUEREL}, {@link GRAY} / {@link SIEVERT}, {@link LUMEN} /
 * {@link CANDELA}), the more general / more frequently used one is listed first.
 *
 * @type {NamedUnit[]}
 */
export const MEASUREMENT_UNITS_SCIENTIFIC: NamedUnit[];
//# sourceMappingURL=MEASUREMENT_UNITS_SCIENTIFIC.d.ts.map