/** * Status types for {@link PDFServicesJob}. */ export declare enum PDFServicesJobStatus { /** * Represents in progress status */ IN_PROGRESS = "in progress", /** * Represents failed status */ FAILED = "failed", /** * Represents completed status */ DONE = "done" }