export declare const JobState: { readonly Accepted: "Accepted"; readonly Pending: "Pending"; readonly Running: "Running"; readonly Completed: "Completed"; readonly Failed: "Failed"; }; export type JobState = (typeof JobState)[keyof typeof JobState];