import React from 'react'; import { ErrorPageMainPropsType } from './ErrorPageMain'; import { ErrorPageHeaderPropsType } from './ErrorPageHeader'; import { ErrorPageFooterPropsType } from './ErrorPageFooter'; export interface ErrorPagePropsType { children?: Array | React.ReactElement | React.ReactElement> | null; } declare const ErrorPage: (props: ErrorPagePropsType) => JSX.Element; export default ErrorPage;