/**
 * Convert a length value between units.
 * For now, only supports converting meters to feet and vice versa.
 */
export declare function convertLength(value: number, from: string, to: string): number;
