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