import React from 'react'; interface IErrorPageProps { error: React.ReactNode; } declare const ErrorPage: ({ error }: IErrorPageProps) => JSX.Element; export default ErrorPage;