import React from 'react';
export interface IconLoadingProps {
    color?: 'bg-gray-50' | 'text-white' | 'text-red-50' | 'bg-transparent';
}
export declare const IconLoading: ({ color }: IconLoadingProps) => React.JSX.Element;
