/** * The status of the parse run: * * `"PENDING"` - The run has been created and is waiting to be processed. Only applies to runs created via `POST /parse_runs/batch`. * * `"PROCESSING"` - The file is still being processed * * `"PROCESSED"` - The file was successfully processed * * `"FAILED"` - The processing failed (see `failureReason` for details) */ export declare const ParseRunStatusEnum: { readonly Pending: "PENDING"; readonly Processing: "PROCESSING"; readonly Processed: "PROCESSED"; readonly Failed: "FAILED"; }; export type ParseRunStatusEnum = (typeof ParseRunStatusEnum)[keyof typeof ParseRunStatusEnum] | string;