import React from 'react'; interface IErrorBoundaryPageProps { children: React.ReactNode; } declare const ErrorBoundaryPage: (props: IErrorBoundaryPageProps) => JSX.Element; export default ErrorBoundaryPage;