/**
 * Converts between area units
 *
 * @param n - The value to be converted
 * @param from - The current area unit.
 * @param to - The area unit to be converted to.
 */
export declare function area(n: number, from: string, to: string): number;
