import { FixingModel } from './fixing.model'; export declare class CurrencyModel { id: number; code: string; label: string; fixings: FixingModel[]; blocked: boolean; activated: boolean; constructor(id?: number, code?: string, label?: string, fixings?: FixingModel[], blocked?: boolean, activated?: boolean); fromJSON(json: any): this; } //# sourceMappingURL=currency.model.d.ts.map