import { FunctionComponent } from 'react'; import { ForecastErrorType } from '../Forecast'; declare type ErrorProps = { errorType: ForecastErrorType; hasContainer?: boolean; }; declare const Error: FunctionComponent; export default Error;