/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * The status of the embed job
 */
export declare type EmbedJobStatus = "processing" | "complete" | "cancelling" | "cancelled" | "failed";
export declare const EmbedJobStatus: {
    readonly Processing: "processing";
    readonly Complete: "complete";
    readonly Cancelling: "cancelling";
    readonly Cancelled: "cancelled";
    readonly Failed: "failed";
};
