import { AbstractNameEntity } from '../base'; import { ExchangeCurrencyType, ExchangeObjectUsageType } from './enum-values'; declare const ExchangeObject_base: { new (...args: any[]): { isPublished: boolean; hasId(): boolean; save(options?: import("typeorm").SaveOptions): Promise; remove(options?: import("typeorm").RemoveOptions): Promise; softRemove(options?: import("typeorm").SaveOptions): Promise; recover(options?: import("typeorm").SaveOptions): Promise; reload(): Promise; }; } & typeof AbstractNameEntity; export declare class ExchangeObject extends ExchangeObject_base { key: string; type: ExchangeCurrencyType; price: number; value: string; cover: string; usage: ExchangeObjectUsageType; } export {};