/**
 * 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 declare function distance(n: number, from: string, to: string): number;
