import { default as React } from 'react'; export type AbyssErrorPageProps = { appName: string; error?: Error | null; componentStack?: string | null; onRetry?: () => void; onHome?: () => void; fullHeight?: boolean; }; declare const AbyssErrorPage: React.FC; export default AbyssErrorPage;