export interface UploadingFile {
    id: string;
    batchId: string;
    name: string;
    status: 'uploading' | 'uploaded' | 'error';
    error?: string;
}
interface UploadStatusPopoverProps {
    uploadingFiles: UploadingFile[];
    onDismissError?: (fileId: string) => void;
    onOpenChange?: (open: boolean) => void;
}
export declare function UploadStatusPopover({ uploadingFiles, onDismissError, onOpenChange, }: UploadStatusPopoverProps): import("react").JSX.Element | null;
export {};
//# sourceMappingURL=upload-status-popover.d.ts.map