import type { FC } from "react"; import type { IErrorInfo } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент информации об ошибке * @returns {ReactElement} */ declare const ErrorInfo: FC; export type { IErrorInfo }; export { ErrorInfo };