/** * [IEX Symbols](https://iexcloud.io/docs/api/#iex-symbols) * * This call returns an array of symbols the Investors Exchange supports for trading. This list is updated daily as of 7:45 a.m. ET. Symbols may be added or removed by the Investors Exchange after the list was produced. */ export declare const iexSymbols: () => Promise; export interface IEXSymbol { /** refers to the symbol represented in Nasdaq Integrated symbology (INET). */ readonly symbol: string; /** refers to the date the symbol reference data was generated. */ readonly date: Date; /** will be true if the symbol is enabled for trading on IEX. */ readonly isEnabled: boolean; }