import React, { ComponentType } from 'react';
import { IconProps } from '@kepler.gl/cloud-providers';
interface UploadAnimationProps {
    icon?: ComponentType<IconProps> | null;
}
export declare const UploadAnimation: React.FC<UploadAnimationProps>;
interface StatusPanelProps {
    error?: string | null;
    isLoading?: boolean;
    providerIcon?: ComponentType<IconProps> | null;
}
declare const StatusPanel: React.FC<StatusPanelProps>;
export default StatusPanel;
