import { IMeasure } from '../types'; export type pressureSystems = 'metric' | 'imperial'; export type pressureUnits = 'Pa' | 'hPa' | 'kPa' | 'bar' | 'MPa' | 'torr' | 'psi' | 'ksi'; export declare const pressure: IMeasure;