/** * 异常页面 */ import React from 'react'; interface ErrorPageInnerProps { icon: string; title: string; desc: string; children?: React.ReactNode; } export declare class ErrorPageInner extends React.Component { render(): JSX.Element; } declare function NotFound(props: { children?: React.ReactNode; }): JSX.Element; declare function Unauthorized(props: { children?: React.ReactNode; }): JSX.Element; declare function Forbidden(props: { children?: React.ReactNode; }): JSX.Element; declare function InternalError(props: { children?: React.ReactNode; }): JSX.Element; declare const _default: { Unauthorized: typeof Unauthorized; Forbidden: typeof Forbidden; InternalError: typeof InternalError; NotFound: typeof NotFound; }; export default _default;