export declare const JobType: {
    readonly Annotation: "annotation";
    readonly GroundTruth: "ground_truth";
    readonly ConsensusReplica: "consensus_replica";
};
export type JobType = typeof JobType[keyof typeof JobType];
