interface IPrices { USD: number; EUR: number; } export interface CryptoInterface { BTC: IPrices; ETH: IPrices; XRP: IPrices; } export declare class CryptoView { /** * Valid API key obtained from cryptocompare.com */ apiKey: string; cryptoData: CryptoInterface; cryptoCurrencies: string[]; componentDidLoad(): void; fetchData(): void; listen(event: any): void; render(): any; } export {};