import React from "react"; const ErrorPage: React.FC<{ homeUrl?: string; status?: number; backToHomeButtonProps?: Partial< React.ButtonHTMLAttributes >; children?: React.ReactNode | React.ReactNode[]; showNeetoChatWidget?: boolean; description?: string; title?: string; hideBackToHomeButton?: boolean; }>; export default ErrorPage;