import { ReactNode } from 'react'; export interface ErrorStateProps { /** Shows the brand logo above the message (full-page crash screens) */ fullPage?: boolean; /** Brand mark rendered when fullPage — override for non-default brands (e.g. the supplier logo) */ logo?: ReactNode; /** Reload/retry callback — the host app owns the navigation strategy */ onReload?: () => void; title?: ReactNode; description?: ReactNode; actionLabel?: ReactNode; } /** * Error screen counterpart of EmptyState: headline, hairline divider and a reload action. * Router-agnostic — the reload behaviour comes from `onReload`. */ declare const ErrorState: ({ fullPage, logo, onReload, title, description, actionLabel }: ErrorStateProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default ErrorState;