export interface ISecurity { sequence: string; exchange: string; time: string; paper: string; name: string; isin: string; lot: number; lastTradeDate: string; prevPrice: number; tradeableSize: number; currency: string; sectype: string; sector: string; primaryPaper: string; primaryExchange: string; valueFactor: number; status: string; } export declare class SecurityParser { private dataArray; constructor(dataArray: any[]); parse(): ISecurity; }