import type { Rates } from './options.ts'; interface GetRateOptions { base: string; rates: Rates; from: string | undefined; to: string | undefined; } export default function getRate({ base, rates, from, to, }: GetRateOptions): number; export {}; //# sourceMappingURL=get-rate.d.ts.map