/** * The status of the parse run: * * `"PROCESSING"` - The file is still being processed * * `"PROCESSED"` - The file was successfully processed * * `"FAILED"` - The processing failed (see `failureReason` for details) */ export declare const ParseRunStatusStatus: { readonly Processing: "PROCESSING"; readonly Processed: "PROCESSED"; readonly Failed: "FAILED"; }; export type ParseRunStatusStatus = (typeof ParseRunStatusStatus)[keyof typeof ParseRunStatusStatus] | string;