import React from 'react'; import { WeatherComponentProps, WeatherComponentState } from '../types'; export default class WeatherComponent extends React.Component { private forec; constructor(props: WeatherComponentProps); componentDidMount(): Promise; componentDidUpdate(prevProps: WeatherComponentProps): Promise; render(): JSX.Element | null; }