import React from 'react'; interface ErrorViewProps { error: string; } /** * Displays the specific error that occurred */ declare const ErrorView: React.FC; export default ErrorView;