// Copyright © 2022-2026 Partium, Inc. DBA Partium import { Image, ImageFromDataAPI } from '../../data'; export interface EnrichmentJobPartFromAPI { partiumId: string | null; id: string; name: string | null; nameLanguage?: string | null; image: ImageFromDataAPI | null; status: ENRICHMENT_JOB_PART_STATUS; } export interface EnrichmentJobPartsSummary { totalCount: number; validCount: number; } export declare enum ENRICHMENT_JOB_PART_STATUS { VALID = "valid", INVALID = "invalid" } export interface EnrichmentJobPart { partiumId: string | null; externalId: string; name: string | null; nameLanguage?: string | null; image: Image | null; status: ENRICHMENT_JOB_PART_STATUS; } export declare const enrichmentJobPartFromAPIResponse: (data: EnrichmentJobPartFromAPI) => EnrichmentJobPart;