import React from 'react';
export type LoadingErrorIndicatorProps = {
    /** Error object */
    error?: Error | null;
};
export declare const LoadingErrorIndicator: ({ error }: LoadingErrorIndicatorProps) => React.JSX.Element | null;
