import { IMeasure } from '../types';
export type accelerationSystems = 'metric';
export type accelerationUnits = 'gal' | 'm/s2' | 'g-force';
export declare const acceleration: IMeasure<accelerationSystems, accelerationUnits>;
