/********************************************************************* * © Copyright IBM Corp. 2024 *********************************************************************/ import React from 'react'; import PropTypes from 'prop-types'; export declare class LoadingIcon extends React.Component<{ color?: string; }> { static category: string; static propTypes: { color: PropTypes.Requireable; }; componentDidMount(): void; render(): JSX.Element; }