import { IExchange } from '../interfaces';
export declare class ExchangeEntity implements IExchange {
batchId: string | null;
collectedAt: Date;
createAt: Date;
id: string;
name: string;
price: number;
symbol: string;
updatedAt: Date;
urlApi: string;
}