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