import * as React from 'react'; interface ErrorPaneProps extends React.HTMLAttributes { embed?: boolean; error?: string | Error | unknown; title?: string; text?: string; onRetry?: () => void; onGoToStart?: () => void; actions?: boolean; } declare const ErrorPane: React.ForwardRefExoticComponent>; export { ErrorPane }; //# sourceMappingURL=error-pane.d.ts.map