export interface MoneyProps { amount: number; currency: string; alwaysShowDecimals?: boolean; } declare const Money: ({ amount, currency, alwaysShowDecimals }: MoneyProps) => import("react").JSX.Element; export default Money; //# sourceMappingURL=Money.d.ts.map