import { IMeasure } from '../types';
export type forceSystems = 'metric' | 'imperial';
export type forceUnits = 'N' | 'kN' | 'lbf';
export declare const force: IMeasure<forceSystems, forceUnits>;
