import { BoxProps, TypographyProps } from '@mui/material'; import { ElementType, FC, ReactNode } from 'react'; export interface ErrorContentProps extends BoxProps { /** * Error Status code, eg. 404 or 500 */ status?: ReactNode; /** * Short message describing the error */ message?: ReactNode; /** * Longer description of the error */ description?: ReactNode; /** * Actions that user can interact with */ actions?: ReactNode; /** * Stacktrace of an error */ stacktrace?: ReactNode; /** * Properties passed to status code */ statusProps?: TypographyProps; /** * Properties passed to message */ messageProps?: TypographyProps; /** * Properties passed to description */ descriptionProps?: TypographyProps; /** * Properties passed to wrapper of actions */ actionsProps?: BoxProps; /** * Properties passed to code stacktrace */ stacktraceProps?: BoxProps; } /** * Component that renders an information about error */ export declare const ErrorContent: FC;