import React, { ErrorInfo } from 'react'; interface ErrorLogBoundaryProps { children: React.ReactNode; handleError?: (error: Error, errorInfo?: ErrorInfo) => void; } declare const ErrorLogBoundary: React.FC; export default ErrorLogBoundary;