import { Currency } from '../currency.enum';
export declare class ExchangeRate {
    id: number;
    year: number;
    month: number;
    currency: Currency;
    rate: number;
}
