import { type CurrencyCode } from '../../enums/index.js';
import { type IMoneyResponse } from '../../types/index.js';
export declare class Money {
    readonly amount: string;
    readonly currencyCode: CurrencyCode;
    constructor(money: IMoneyResponse);
}
