// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * The status of an image submission. */ export declare enum ImageSubmissionStatus { /** * The image is pending review. */ PENDING = "pending", /** * The image is approved. */ APPROVED = "approved", /** * The image is rejected. */ REJECTED = "rejected" }