import {createNotification} from "../../create-notification.mjs";
import {UPLOAD_COMPLETE_NOTIFICATION_NAME} from "./upload-complete-notification-name.constant.mjs";
export function createUploadCompleteNotification() {
return createNotification(UPLOAD_COMPLETE_NOTIFICATION_NAME, void 0);
}