export const baseUnit: "ft"; export namespace toBaseConversions { export const km: number; export const m: number; export const cm: number; export const mm: number; export const mi: number; export const yd: number; export const ft: number; const _in: number; export { _in as in }; } export namespace unitAliases { const km_1: string; export { km_1 as km }; const m_1: string; export { m_1 as m }; export const meters: string; const cm_1: string; export { cm_1 as cm }; export const centimeters: string; const mm_1: string; export { mm_1 as mm }; const mi_1: string; export { mi_1 as mi }; export const miles: string; const yd_1: string; export { yd_1 as yd }; export const yards: string; const ft_1: string; export { ft_1 as ft }; export const feet: string; export const foot: string; const _in_1: string; export { _in_1 as in }; export const inches: string; } export function convert(value: any, from: any, to: any): number;