import React from 'react'; import { DOMAttributes, FocusableElement } from '@react-types/shared'; export type InlineLoadingErrorStateProps = { title: string; titleAriaProps: DOMAttributes; onClose: () => void; onRetry: () => void; isLoading: boolean; error: Error | null; }; export declare const InlineLoadingErrorState: ({ title, titleAriaProps, onClose, onRetry, isLoading, error }: InlineLoadingErrorStateProps) => React.JSX.Element;