import type { Currency } from "./Currency"; export declare type Money = { amount: string; currency: Currency; formattedValue: string; };