/** * This file was auto-generated by Fern from our API Definition. */ /** * The status of a thread * * @example * Flatfile.ThreadStatus.Ready * * @example * Flatfile.ThreadStatus.Active * * @example * Flatfile.ThreadStatus.Error */ export type ThreadStatus = "ready" | "active" | "error"; export declare const ThreadStatus: { readonly Ready: "ready"; readonly Active: "active"; readonly Error: "error"; };