/**
* Converts between distance/length units
*
* @param n - The value to be converted
* @param from - The current distance unit.
* @param to - The distamce unit to be converted to.
*/
export declarefunctiondistance(n: number, from: string, to: string): number;