/** * Status is the item's initial lifecycle state. Both modes share this * vocabulary — memory mode reuses the same values. */ export declare const IngestionSourceStatus: { readonly Queued: "queued"; readonly Processing: "processing"; readonly Completed: "completed"; readonly Failed: "failed"; }; export type IngestionSourceStatus = (typeof IngestionSourceStatus)[keyof typeof IngestionSourceStatus];