import { IMeasure } from '../types'; export type paceSystems = 'metric' | 'imperial'; export type paceUnits = 'min/km' | 's/m' | 'min/mi' | 's/ft'; export declare const pace: IMeasure;