import { ICurrencies, ICurrency } from '../models'; export declare enum CurrencyActionTypes { Load = "Currency.Load", Update = "Currency.Update" } export interface ICurrencyLoad { type: CurrencyActionTypes.Load; currencies: ICurrencies; } export interface ICurrencyUpdate { type: CurrencyActionTypes.Update; currency: ICurrency; } export declare class CurrencyActionCreators { static load: (currencies: ICurrencies) => ICurrencyLoad; static update: (currency: ICurrency) => ICurrencyUpdate; } export declare type ICurrencyAction = ICurrencyLoad | ICurrencyUpdate; //# sourceMappingURL=currency.d.ts.map