import { IMeasure } from '../types'; export type speedSystems = 'metric' | 'imperial'; export type speedUnits = 'km/h' | 'm/s' | 'ft/s' | 'mi/h' | 'knot'; export declare const speed: IMeasure;